import { EpPropFinalized, EpPropMergeType } from "../../../utils/vue/props/types.js"; import { ZIndexType } from "../../../utils/typescript.js"; import "../../../utils/index.js"; import * as vue from "vue"; import { ExtractPropTypes, ExtractPublicPropTypes } from "vue"; //#region ../../packages/components/overlay/src/overlay.d.ts declare const overlayProps: { readonly mask: EpPropFinalized; readonly customMaskEvent: BooleanConstructor; readonly overlayClass: { readonly type: vue.PropType string | string[] | Record) | (() => string | string[] | Record) | (((new (...args: any[]) => string | string[] | Record) | (() => string | string[] | Record)) | null)[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly zIndex: { readonly type: vue.PropType number | "auto" | "inherit" | "initial" | "revert" | "revert-layer" | "unset") | (() => ZIndexType) | (((new (...args: any[]) => number | "auto" | "inherit" | "initial" | "revert" | "revert-layer" | "unset") | (() => ZIndexType)) | null)[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; type OverlayProps = ExtractPropTypes; type OverlayPropsPublic = ExtractPublicPropTypes; declare const overlayEmits: { click: (evt: MouseEvent) => boolean; }; type OverlayEmits = typeof overlayEmits; //#endregion export { OverlayEmits, OverlayProps, OverlayPropsPublic, overlayEmits, overlayProps };