import * as React from 'react';
export type LogoTheme = [string, string, string, string];
export interface LogoStaticProps {
    size?: number;
    grey?: boolean;
    colors?: 'default' | 'red';
    variant?: 'default' | 'round';
    style?: React.CSSProperties;
}
export declare const LogoStatic: React.FC<LogoStaticProps>;
