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