import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; }; events: { clickClose: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type IconCloseProps = typeof __propDef.props; export declare type IconCloseEvents = typeof __propDef.events; export declare type IconCloseSlots = typeof __propDef.slots; export default class IconClose extends SvelteComponentTyped { } export {};