import type { LocaleProps, ThemeProps } from 'jamis-core';
import type { CSSProperties, PropsWithChildren } from 'react';
import type { SchemaClassName, SizeUnit } from '../types';
export interface ModalProps extends PropsWithChildren, ThemeProps, LocaleProps {
    className?: string;
    contentClassName?: SchemaClassName;
    size?: SizeUnit;
    width?: any;
    height?: any;
    overlay?: boolean;
    closeOnEsc?: boolean;
    closeOnOutside?: boolean;
    container?: any;
    show?: boolean;
    disabled?: boolean;
    style?: CSSProperties;
    onHide: (e: any) => void;
    onExited?: () => void;
    onEntered?: () => void;
}
