;
* }
*
* (
*
* {children}
*
* )}
* >
*
*
* ```
*
* @remarks
* - Without a ref, the provider initializes automatically on mount
* - With a ref, you must call `initialize()` manually with target element
* - All modals created within this provider share the same configuration
* - The provider creates a portal for rendering modals outside the React tree
*/
export declare const BootstrapProvider: import("react").NamedExoticComponent<{
usePathname?: import("../../@aileron/declare").Fn<[], {
pathname: string;
}>;
context?: import("../../@aileron/declare").Dictionary;
root?: HTMLElement | null;
} & import("../../providers/ConfigurationContext").ConfigurationContextProviderProps & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes>;