declare const Modal: import("svelte").Component<{
    open?: boolean;
    variant?: string;
    size?: string;
    closable?: boolean;
    closeOnBackdrop?: boolean;
    closeOnEscape?: boolean;
    class?: string;
    children: any;
    header: any;
    content: any;
    footer: any;
    actions: any;
    onclose: any;
    ariaLabel: any;
    ariaLabelledBy: any;
    ariaDescribedBy: any;
}, {}, "open">;
type Modal = ReturnType<typeof Modal>;
export default Modal;
//# sourceMappingURL=Modal.svelte.d.ts.map