import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: string; description: string; icon?: string; btnLabel?: string; btnIcon?: string; href?: string; horizontal?: boolean; }; events: { click: any; } & { [evt: string]: CustomEvent; }; slots: { btn: {}; }; }; export declare type EmptyPanelProps = typeof __propDef.props; export declare type EmptyPanelEvents = typeof __propDef.events; export declare type EmptyPanelSlots = typeof __propDef.slots; export default class EmptyPanel extends SvelteComponentTyped { } export {};