import * as tsx from 'vue-tsx-support';
import { OverlayEvents } from './Events';
import './styles.scss';
export declare const Overlay: tsx.TsxComponent<import("vue").default, {} & {
    show?: boolean;
    blur?: string | number;
    fullscreen?: boolean;
    noScroll?: boolean;
    opacity?: string | number;
    zIndex?: string | number;
}, OverlayEvents, {}, {
    styles: Record<string, string | number>;
} & {
    show: boolean;
    blur: string | number;
    fullscreen: boolean;
    noScroll: boolean;
    opacity: string | number;
    zIndex: string | number;
}>;
