import React, { ReactNode } from 'react'; import { BoxProps } from '../Box/Box'; interface DialogContentProps { children: ReactNode; bottomSheetOnMobile?: boolean; padding?: BoxProps['padding']; marginTop?: BoxProps['marginTop']; wide?: boolean; auto?: boolean; } export declare function DialogContent({ auto, bottomSheetOnMobile, children, marginTop, padding, wide, }: DialogContentProps): React.JSX.Element; export {};