import React from 'react'; import { ArrayElementType } from '../../types/utils/ArrayElementType'; import { LinkProps } from '../Link/Link'; import { SupportedColor } from '../Element/Element'; export declare const supportedLogoSizes: readonly ["xs", "sm", "md", "lg", "xlg"]; export declare type SupportedLogoSize = ArrayElementType; export declare type LogoProps = { /** Icon size */ size?: SupportedLogoSize; /** Logo color */ color?: SupportedColor; /** Tag of wrapping element */ tagName?: keyof JSX.IntrinsicElements; /** Props for logo wrapping Link component. If any link props defined, logo is wrapped with Link component. */ linkProps?: LinkProps; }; declare const Logo: React.FunctionComponent; export default Logo;