/** @typedef {typeof __propDef.props}  ShoppingCartIconProps */
/** @typedef {typeof __propDef.events}  ShoppingCartIconEvents */
/** @typedef {typeof __propDef.slots}  ShoppingCartIconSlots */
export default class ShoppingCartIcon extends SvelteComponentTyped<{
    [x: string]: any;
}, {
    [evt: string]: CustomEvent<any>;
}, {}> {
}
export type ShoppingCartIconProps = typeof __propDef.props;
export type ShoppingCartIconEvents = typeof __propDef.events;
export type ShoppingCartIconSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export {};
