import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title?: string | undefined; btnClass?: string | undefined; iconPath?: string | undefined; iconColor?: string | undefined; iconSize?: string | undefined; disabled?: boolean | undefined; showOnlyWeb?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type ButtonCloseIconProps = typeof __propDef.props; export type ButtonCloseIconEvents = typeof __propDef.events; export type ButtonCloseIconSlots = typeof __propDef.slots; export default class ButtonCloseIcon extends SvelteComponentTyped { } export {};