export type SpotlightDialogProps = Readonly<{ open?: boolean; defaultOpen?: boolean; onOpenChange?: (open: boolean) => void; trigger?: React.ReactNode; visual: React.ReactNode; title: string; subtitle?: string; /** Centered alone, end-aligned when `pagination` is present. */ actions?: React.ReactNode; pagination?: React.ReactNode; hideCloseButton?: boolean; className?: string; testId?: string; }>; /** * Dialog for quick tips or promotion of a new feature (promotional and tutorial * featurings). Fixed width of 640px, height hugging content. * * https://www.figma.com/design/cHgANa7dtzDDGXk7dKuAOQ/Prism?node-id=76519-18026&m=dev */ export declare const SpotlightDialog: ({ open, defaultOpen, onOpenChange, trigger, visual, title, subtitle, actions, pagination, hideCloseButton, className, testId, }: SpotlightDialogProps) => import("react").JSX.Element; //# sourceMappingURL=SpotlightDialog.d.ts.map