import { SwirlIconSize } from "./swirl-icon.types"; export type SwirlIconColor = "critical" | "default" | "disabled" | "highlight" | "info" | "on-action-primary" | "on-image" | "on-status" | "on-surface-highlight-subdued" | "on-surface-highlight" | "strong" | "success" | "warning"; export type SwirlIconWrapperColor = "banana" | "blueberry" | "chilli" | "grape" | "kiwi" | "neutral" | "pumpkin" | "radish" | "default"; export type SwirlIconWrapperSize = "xs" | "s" | "m" | "l" | "xl" | "2xl"; export declare class SwirlIcon { color?: SwirlIconColor; glyph: string; size: SwirlIconSize; wrapperColor?: SwirlIconWrapperColor; wrapperSize?: SwirlIconWrapperSize; render(): any; }