import { ISizes } from '@naturacosmeticos/natds-styles'; import { Color } from '@naturacosmeticos/natds-themes'; declare type LogoColors = 'neutral' | keyof Pick; declare type LogoSizes = keyof Omit; declare type LogoModels = 'a' | 'b'; export interface ILogoProps { /** * The Logo description */ arialabel?: string; /** * The Logo color * @default neutral */ color?: LogoColors; /** * The Logo model. * @default a */ model?: LogoModels; /** * The Logo size * @default veryhuge */ size?: LogoSizes; } export {};