/// <reference types="react" />
export type LogoIOAppColors = "default" | "light" | "dark";
export interface LogoIOAppProps {
    /** Provides a human-readable title for the element that contains it. */
    title: string;
    /** Width of the component. Height is set automatically. */
    size?: number;
    /** The color of the component. */
    color: LogoIOAppColors;
}
export declare const LogoIOApp: ({ title, size, color, }: LogoIOAppProps) => JSX.Element;
