export type SettingsDialogProps = Readonly<{ open?: boolean; defaultOpen?: boolean; onOpenChange?: (open: boolean) => void; trigger?: React.ReactNode; sidePanel: React.ReactNode; hideCloseButton?: boolean; className?: string; testId?: string; children: React.ReactNode; }>; /** * Destination dialog for settings. Max width of 1024px, fills the available height; * below 800px the side panel floats and can be toggled. * * https://www.figma.com/design/cHgANa7dtzDDGXk7dKuAOQ/Prism?node-id=76519-18164&m=dev */ export declare const SettingsDialog: ({ open, defaultOpen, onOpenChange, trigger, sidePanel, hideCloseButton, className, testId, children, }: SettingsDialogProps) => import("react").JSX.Element; //# sourceMappingURL=SettingsDialog.d.ts.map