import { SvelteComponent } from "svelte"; import { type IconSource } from '@steeze-ui/svelte-icon'; declare const __propDef: { props: { icon?: IconSource | undefined; title?: string | undefined; description?: string | undefined; check?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type EmptyStateIconProps = typeof __propDef.props; export type EmptyStateIconEvents = typeof __propDef.events; export type EmptyStateIconSlots = typeof __propDef.slots; export default class EmptyStateIcon extends SvelteComponent { } export {};