import { SvelteComponent } from "svelte"; type Props = { height: number; }; declare const __propDef: { props: { height: Props["height"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type InboxEmptyStateProps = typeof __propDef.props; export type InboxEmptyStateEvents = typeof __propDef.events; export type InboxEmptyStateSlots = typeof __propDef.slots; export default class InboxEmptyState extends SvelteComponent { } export {};