import { ExtractPropTypes } from 'vue'; export declare const overlayProps: { /** * 是否显示遮罩层 */ readonly mask: { readonly type: BooleanConstructor; readonly default: true; }; /** * 遮罩层层级 */ readonly zIndex: { readonly type: NumberConstructor; readonly default: 2026; }; }; export type OverlayProps = ExtractPropTypes;