import type { ExtractPropTypes } from 'vue'; import { IconProps } from '../../icon'; import type ModalOverlay from './modal-overlay.vue'; export declare const modalOverlayProps: { readonly open: { readonly type: import("vue").PropType>; readonly required: true; readonly validator: (val: unknown) => boolean; __epPropKey: true; }; readonly borderRadius: import("ll-plus/es/utils").EpPropFinalized; readonly rootClass: import("ll-plus/es/utils").EpPropFinalized; readonly zIndex: import("ll-plus/es/utils").EpPropFinalized; readonly showClose: import("ll-plus/es/utils").EpPropFinalized; readonly showHeader: import("ll-plus/es/utils").EpPropFinalized; readonly closeStyle: import("ll-plus/es/utils").EpPropFinalized {}, boolean>; readonly headerStyle: import("ll-plus/es/utils").EpPropFinalized {}, boolean>; readonly closeText: import("ll-plus/es/utils").EpPropFinalized; readonly closeTextColor: import("ll-plus/es/utils").EpPropFinalized; readonly closeTextSize: import("ll-plus/es/utils").EpPropFinalized; readonly closeIcon: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, () => { iconName: string; color: any; size: any; }, boolean>; readonly closeIconTextSpace: import("ll-plus/es/utils").EpPropFinalized; readonly fullLoading: import("ll-plus/es/utils").EpPropFinalized; readonly mainLoading: import("ll-plus/es/utils").EpPropFinalized; readonly mainClass: import("ll-plus/es/utils").EpPropFinalized; readonly isBespreadMain: import("ll-plus/es/utils").EpPropFinalized; readonly mainStyle: import("ll-plus/es/utils").EpPropFinalized {}, boolean>; readonly showFooter: import("ll-plus/es/utils").EpPropFinalized; readonly footerStyle: import("ll-plus/es/utils").EpPropFinalized {}, boolean>; readonly mediaClass: StringConstructor; readonly isShowFooterShadow: import("ll-plus/es/utils").EpPropFinalized; readonly footerShadowPlacement: import("ll-plus/es/utils").EpPropFinalized; }; export declare const modalOverlayEmits: { readonly close: (bool?: boolean) => boolean; readonly 'update:open': (bool?: boolean) => boolean; }; export type ModalOverlayProps = ExtractPropTypes; export type ModalOverlayEmits = typeof modalOverlayEmits; export type ModalOverlayInstance = InstanceType;