import { type PropsWithChildren } from 'react'; import { type DialogBaseHeaderProps, type DialogDescriptionProps, type DialogFooterProps, type DialogRootProps } from './@common'; export type TwoButtonDialogProps = DialogRootProps & { title?: React.ReactNode; icon?: DialogBaseHeaderProps['icon']; iconColor?: DialogBaseHeaderProps['color']; description?: React.ReactNode; descriptionProps?: Omit; footerProps?: Omit; primaryButton?: React.ReactNode; secondaryButton?: React.ReactNode; extraSlot?: React.ReactNode; width?: number | string; autoResizeWidth?: boolean; }; export declare function TwoButtonDialog({ children, title, icon, iconColor, description, descriptionProps, footerProps, primaryButton, secondaryButton, extraSlot, width, autoResizeWidth, ...props }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TwoButtonDialog.d.ts.map