import { SvelteComponent } from "svelte"; import type { ButtonSize } from '../../types/ButtonSize'; declare const __propDef: { props: { class?: string | undefined; title: string; description: string; icon?: string | undefined; btnLabel?: string | undefined; btnIcon?: string | undefined; btnSize?: ButtonSize | undefined; href?: string | undefined; horizontal?: boolean | undefined; compact?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { icon: {}; btn: {}; }; }; export type EmptyPanelProps = typeof __propDef.props; export type EmptyPanelEvents = typeof __propDef.events; export type EmptyPanelSlots = typeof __propDef.slots; export default class EmptyPanel extends SvelteComponent { } export {};