import type { HexString } from '../../types/color-system';
import type { BaseProps, StylableProps } from '../../types/component';
import type { ColorToken } from '../../types/tokens';
export interface LogoProps extends BaseProps, StylableProps {
    /** Color of logo */
    color?: HexString | ColorToken;
    /** Height of logo */
    height: string;
    /** Width of logo */
    width: string;
}
