import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * controls the visibility of the backdrop */ show?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type BackdropProps = typeof __propDef.props; export type BackdropEvents = typeof __propDef.events; export type BackdropSlots = typeof __propDef.slots; /** * Backdrop * * Used to project a colored background over the screen * * Props: * - show(boolean): controls the visibility of the backdrop * * CSS variables: * - backdropColor(default: #000000): controls the color of the backdrop */ export default class Backdrop extends SvelteComponentTyped { } export {};