/** @typedef {typeof __propDef.props} PlaceholderProps */ /** @typedef {typeof __propDef.events} PlaceholderEvents */ /** @typedef {typeof __propDef.slots} PlaceholderSlots */ export default class Placeholder extends SvelteComponentTyped<{ class?: string; inverted?: boolean; style?: {}; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type PlaceholderProps = typeof __propDef.props; export type PlaceholderEvents = typeof __propDef.events; export type PlaceholderSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; inverted?: boolean; style?: {}; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};