import { BrandMode } from '../../enums'; export interface BrandExpansionProps { /** * Add a balancing effect to the globe */ animated?: boolean; /** * Monochromatic logo's color */ color?: string; /** * Logo's background color */ background?: string; /** * Logo's size */ size?: number | string; /** * Brand mode ("short", "medium", "long") */ mode?: BrandMode; /** * Reverse color of the main text to white if no `color` is given */ dark?: boolean; /** * If true, it resizes the brand as the display downsize. * If false, the brand keep the same size. */ responsive?: boolean; } declare const __VLS_export: import('../../../node_modules/vue').DefineComponent & Readonly<{}>, { background: string; color: string; dark: boolean; size: number | string; animated: boolean; mode: BrandMode; responsive: boolean; }, {}, {}, {}, string, import('../../../node_modules/vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;