R1_DEPRECATED_FUNCTIONS: {
    createSearch: (
        _config: DeprecatedFunctionsConfig,
    ) => FlowrSearchBuilderOut<"all", [], ParentInformation, "with">;
    defaultConfig: {
        deprecatedFunctions: [
            "all_equal",
            "arrange_all",
            "distinct_all",
            "filter_all",
            "group_by_all",
            "summarise_all",
            "mutate_all",
            "select_all",
            "vars",
            "all_vars",
            "id",
            "failwith",
            "select_vars",
            "rename_vars",
            "select_var",
        ];
    };
    prettyPrint: (result: DeprecatedFunctionsResult) => string;
    processSearchResult: (
        elements: FlowrSearchElements<
            ParentInformation,
            FlowrSearchElement<ParentInformation>[],
        >,
        config: DeprecatedFunctionsConfig,
    ) => {
        ".meta": DeprecatedFunctionsMetadata;
        results: {
            certainty: Definitely;
            function: Identifier;
            range: SourceRange;
        }[];
    };
} = ...

Type declaration