/** * Escape Hatch * A fallback heading component in runtime that generates an anchor link based on the title prop. * * @param level - The heading level (1-6). * @param title - The title text to display in the heading. */ export declare function FallbackHeading({ level, title, }: { level: 1 | 2 | 3 | 4 | 5 | 6; title: string; }): "" | import("react/jsx-runtime").JSX.Element;