import { SvelteComponentTyped } from "svelte"; export interface XMarkIconProps { svgAttrs?: SVGProps; } import { SVGProps } from "../types"; declare const __propDef: { props: { svgAttrs?: XMarkIconProps["svgAttrs"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; type XMarkIconProps_ = typeof __propDef.props; export type XMarkIconEvents = typeof __propDef.events; export type XMarkIconSlots = typeof __propDef.slots; export default class XMarkIcon extends SvelteComponentTyped { } export {};