export declare const iconColors: readonly ["primary", "secondary", "positive", "warning", "negative", "infoPrimary", "infoSecondary", "positiveStrong", "warningStrong", "negativeStrong", "infoPrimaryStrong", "infoSecondaryStrong", "primaryInverse", "secondaryInverse"]; export declare const iconSizes: readonly ["xs", "sm", "md", "lg", "xl"]; export type IconSize = typeof iconSizes[number]; export type IconColor = typeof iconColors[number]; export declare const roles: readonly ["presentation", "img", "button", "link", "none"]; export type IconRoles = typeof roles[number] | undefined;