import type { Dictionary, Fn } from '../../../@aileron/declare/index.js'; import { type ConfigurationContextProviderProps } from '../../../providers/ConfigurationContext/index.js'; interface BootstrapProps extends ConfigurationContextProviderProps { usePathname: Fn<[], { pathname: string; }>; context?: Dictionary; anchor: HTMLElement; } export declare const bootstrap: ({ ForegroundComponent, BackgroundComponent, TitleComponent, SubtitleComponent, ContentComponent, FooterComponent, usePathname, options, context, anchor, }: BootstrapProps) => import("react").ReactPortal; export {};