import { SvelteComponent } from "svelte"; declare const __propDef: { props: { class?: string | undefined; name: string; size?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type StoreIconProps = typeof __propDef.props; export type StoreIconEvents = typeof __propDef.events; export type StoreIconSlots = typeof __propDef.slots; export default class StoreIcon extends SvelteComponent { } export {};