import * as tsx from 'vue-tsx-support';
import { ModalEvents } from './Events';
import './styles.scss';
export declare const Modal: tsx.TsxComponent<import("vue").default, {} & {
    show?: boolean;
    size?: "lg" | "sm";
    noScroll?: boolean;
    overlay?: string | number | boolean;
    closeBtn?: boolean;
    closeOverlay?: boolean;
}, ModalEvents, {}, {
    show: boolean;
    size: "lg" | "sm";
    overlay: string | number | boolean;
    closeBtn: boolean;
    closeOverlay: boolean;
    noScroll: boolean;
}>;
