import { SvelteComponent } from "svelte"; import type { EmptyStateIcon } from './types.js'; declare const __propDef: { props: { icon?: EmptyStateIcon | undefined; title?: string | undefined; description?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type EmptyStateIllustrationProps = typeof __propDef.props; export type EmptyStateIllustrationEvents = typeof __propDef.events; export type EmptyStateIllustrationSlots = typeof __propDef.slots; export default class EmptyStateIllustration extends SvelteComponent { } export {};