/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import type { ModalDialogProps } from '../../types';
import type { InternalModalDialogProps } from '../types';
export declare const dialogWidth: (input?: ModalDialogProps["width"]) => string;
export declare const dialogHeight: (input?: ModalDialogProps["height"]) => string;
declare const ModalDialog: React.ForwardRefExoticComponent<React.PropsWithoutRef<InternalModalDialogProps> & React.RefAttributes<HTMLElement>>;
export default ModalDialog;
