export interface SmartNotFoundPage { description?: string; keywords?: string[]; path: string; scope?: string; title: string; url: string; } export interface SmartNotFoundSuggestion { description?: string; title: string; url: string; } export declare const findSmartNotFoundSuggestions: (query: string, pages: SmartNotFoundPage[], { limit, minScore }?: { limit?: number; minScore?: number; }) => SmartNotFoundSuggestion[]; export declare const renderSmartNotFoundMarkdown: ({ allPagesUrl, requestedPath, suggestions, }: { allPagesUrl: string; requestedPath: string; suggestions: SmartNotFoundSuggestion[]; }) => string; //# sourceMappingURL=smart-not-found.d.ts.map