ConfigQueryDefinition: {
    asciiSummarizer: (
        formatter: OutputFormatter,
        _processed: unknown,
        queryResults: BaseQueryResult,
        result: string[],
    ) => boolean;
    completer: (
        partialLine: readonly string[],
        config: FlowrConfigOptions,
    ) => string[];
    executor: (
        __namedParameters: BasicQueryData,
        queries: readonly ConfigQuery[],
    ) => ConfigQueryResult;
    flattenInvolvedNodes: () => never[];
    fromLine: (
        line: readonly string[],
        _config: FlowrConfigOptions,
    ) => [ConfigQuery];
    schema: ObjectSchema<any>;
} = ...

Type declaration