import type { DialogProps as PrimerDialogProps } from '@primer/react'; import type { SxProp } from '../sx'; import { type PropsWithChildren } from 'react'; type DialogProps = PropsWithChildren & SxProp & { as?: React.ElementType; }; type StyledBodyProps = React.ComponentProps<'div'> & SxProp & { as?: React.ElementType; }; type StyledFooterProps = React.ComponentProps<'div'> & SxProp & { as?: React.ElementType; }; declare const Dialog: import("react").ForwardRefExoticComponent> & { __SLOT__: symbol; Buttons: import("react").FC>; Header: import("react").ForwardRefExoticComponent, HTMLDivElement>, "ref"> & SxProp & { as?: React.ElementType; } & import("react").RefAttributes>; Body: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; Footer: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; }; export { Dialog }; export type { DialogProps }; //# sourceMappingURL=Dialog.d.ts.map