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