/** @typedef {typeof __propDef.props} RevealProps */ /** @typedef {typeof __propDef.events} RevealEvents */ /** @typedef {typeof __propDef.slots} RevealSlots */ export default class Reveal extends SvelteComponentTyped<{ class?: string; style?: {}; type?: string; direction?: string; state?: string; instant?: boolean; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type RevealProps = typeof __propDef.props; export type RevealEvents = typeof __propDef.events; export type RevealSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; style?: {}; type?: string; direction?: string; state?: string; instant?: boolean; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};