export interface ILogoProps {
    uk?: boolean;
    variant?: 'black' | 'white' | 'value' | 'dom' | 'office' | 'newOffice' | 'newDom' | 'realty';
    between?: boolean;
    addClassName?: string;
    onClick?: () => void;
}
export declare const logoVariant: {
    black: string;
    white: string;
    value: string;
    dom: string;
    office: string;
    newOffice: string;
    newDom: string;
    realty: string;
};
