import { PropType } from 'vue'; import { ColorScheme, OverlayCallbacks } from '../declaration'; export declare function getOverlayProps(): { colorScheme: { type: PropType; }; styleSet: { type: PropType; }; callbacks: { type: PropType; default: () => {}; }; dimClose: { type: BooleanConstructor; default: boolean; }; dimmed: { type: BooleanConstructor; default: boolean; }; escClose: { type: BooleanConstructor; default: boolean; }; focusLock: { type: BooleanConstructor; default: boolean; }; id: { type: StringConstructor; default: string; }; initialFocusRef: { type: PropType; default: null; }; scrollLock: { type: BooleanConstructor; default: boolean; }; };