import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: { icon: {}; title: {}; description: {}; action: {}; default: {}; }; }; export declare type EmptyProps = typeof __propDef.props; export declare type EmptyEvents = typeof __propDef.events; export declare type EmptySlots = typeof __propDef.slots; export default class Empty extends SvelteComponentTyped { } export {};