import type { ConventionsMap } from '../../types/conventions'; export declare const derivePageName: (pagePath: string) => string; export declare const getConventions: () => ConventionsMap; export declare const hasErrorConvention: (framework: keyof ConventionsMap) => boolean; export declare const resolveErrorConventionPath: (framework: keyof ConventionsMap, pageName: string) => string | undefined; export declare const resolveNotFoundConventionPath: (framework: keyof ConventionsMap) => string | undefined; export declare const setConventions: (map: ConventionsMap) => void; export declare const renderConventionError: (framework: keyof ConventionsMap, pageName: string, error: unknown) => Promise; export declare const renderConventionNotFound: (framework: keyof ConventionsMap) => Promise; export declare const renderFirstNotFound: () => Promise;