import type { ConstantDeclaration, EnumDeclaration, InterfaceDeclaration, TypeDeclaration } from "../ts-utilities/ts-declaration-types"; import type { PreRenderHook } from "../config-types-v4"; type GenerateIndexFileConfig = { filter?: (declaration: TypeDeclaration | InterfaceDeclaration | EnumDeclaration | ConstantDeclaration) => boolean; }; export declare const makeGenerateIndexFile: (config: GenerateIndexFileConfig) => PreRenderHook; declare const generateIndexFile: PreRenderHook; export default generateIndexFile;