/** @typedef {typeof __propDef.props} RemixIconProps */ /** @typedef {typeof __propDef.events} RemixIconEvents */ /** @typedef {typeof __propDef.slots} RemixIconSlots */ export default class RemixIcon extends SvelteComponentTyped<{ size?: string; icon?: string; }, { click: MouseEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type RemixIconProps = typeof __propDef.props; export type RemixIconEvents = typeof __propDef.events; export type RemixIconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; icon?: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};