import * as React from "react"; /** Scrollable body wrapper — flex child inside {@link ScopeModalChrome}. Use as the direct child of {@link AiCfoScopeModal}. */ export declare const AiCfoScopeModalScrollBody: import('@emotion/styled').StyledComponent<{ theme?: import('@emotion/react').Theme; as?: React.ElementType; }, React.DetailedHTMLProps, HTMLDivElement>, {}>; export type AiCfoScopeModalProps = { children: React.ReactElement; open: boolean; onClose?: () => void; }; /** * AI CFO onboarding in a dialog: same MUI modal / backdrop as {@link Modal}, * with scope-specific sizing on the shell only. */ declare const AiCfoScopeModal: ({ open, onClose, children }: AiCfoScopeModalProps) => import("react/jsx-runtime").JSX.Element; export default AiCfoScopeModal;