/** Options accepted by every icon factory. */ export interface IconOptions { /** Convenience — sets both width and height. Default 24. */ size?: number | string; /** Stroke width in SVG units. Default 1. */ strokeWidth?: number | string; /** Any native SVG attribute (class, style, stroke, fill, aria-label, data-*, …). */ [attr: string]: string | number | undefined; } /** Build a icon as a live SVGSVGElement (browser only). */ export declare function AlpineRegion(options?: IconOptions): SVGSVGElement;