import type { WithNormalizedProps } from "../../global"; interface IconDefs { server: string; browser: any; } interface IconInput extends Omit, `on${string}`> { _themes?: () => string; _type: string; _name: string; _size?: string; _def?: () => IconDefs; "a11y-variant"?: "label"; "a11y-text"?: Marko.HTMLAttributes["aria-label"]; "no-skin-classes"?: boolean; } export interface Input extends WithNormalizedProps { } declare class Icon extends Marko.Component { onMount(): void; } export default Icon;