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