import { SvelteComponent } from "svelte"; declare const __propDef: { props: { classes?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type IconInvoiceProps = typeof __propDef.props; export type IconInvoiceEvents = typeof __propDef.events; export type IconInvoiceSlots = typeof __propDef.slots; export default class IconInvoice extends SvelteComponent { } export {};