import { type CSSProperties, type ComponentType } from 'react'; import type { BackgroundComponent, FooterComponentProps, ForegroundComponent, ModalOptions, WrapperComponentProps } from '../../types/index.js'; export interface ConfigurationContextProps { ForegroundComponent: ForegroundComponent; BackgroundComponent?: BackgroundComponent; TitleComponent: ComponentType; SubtitleComponent: ComponentType; ContentComponent: ComponentType; FooterComponent: ComponentType; options: Required & { backdrop: CSSProperties; }>; } export declare const ConfigurationContext: import("react").Context;