import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * Controls whether the modal is shown or not */ open?: boolean | undefined; /** * Controls whether the Modal can be dismssed by pressing escape, * by pressing on the Backdrop or the close button (will be hidden on strict:true) */ strict?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { title: {}; default: {}; }; }; export type ModalProps = typeof __propDef.props; export type ModalEvents = typeof __propDef.events; export type ModalSlots = typeof __propDef.slots; /** * Modal * * Modal component created from a ModalController * * Props: * - open (boolean): Controls whether the modal is shown or not * - strict (boolean): Controls whether the Modal can be dismssed by pressing escape, * by pressing on the Backdrop or the close button (will be hidden on strict:true) * * Slots: * - default: Contents of the modal * - title: Text content of the modal's title * * Css Variables: * - modalFont (default:400 1rem sans-serif)): Font used in the modal * - modalText (default:#161616): Text color in the modal * - modalCloseText (default:#161616): Color of the close button * - modalCloseFont (default:400 0.75rem sans-serif): Font of the close button * - modalTitleText (default:#161616): Color of the title text * - modalTitleFont (default:300 1.25rem sans-serif): Font of the title text */ export default class Modal extends SvelteComponentTyped { } export {};