DEAD_CODE: {
    createSearch: (
        config: DeadCodeConfig,
    ) => FlowrSearchBuilderOut<"all", [], ParentInformation, "with">;
    info: {
        certainty: BestEffort;
        defaultConfig: {};
        description: "Marks areas of code that are never reached during execution.";
        name: "Dead Code";
        tags: readonly [Smell, Usability, Reproducibility];
    };
    prettyPrint: {
        full: (result: DeadCodeResult) => string;
        query: (result: DeadCodeResult) => string;
    };
    processSearchResult: (
        elements: FlowrSearchElements<
            ParentInformation,
            FlowrSearchElement<ParentInformation>[],
        >,
        _config: DeadCodeConfig,
        _data: {
            config: FlowrConfigOptions;
            dataflow: DataflowInformation;
            normalize: NormalizedAst;
        },
    ) => {
        ".meta": DeadCodeMetadata;
        results: { certainty: Certain; range: SourceRange }[];
    };
} = ...

Type declaration