import { type ReactNode } from 'react';
import { DivProps } from "../types";
export interface LogoProps extends DivProps {
    /**
     * @description Additional React Node to be rendered next to the logo
     */
    extra?: ReactNode;
    /**
     * @description Size of the logo in pixels
     * @default 32
     */
    size?: number;
    /**
     * @description Type of the logo to be rendered
     * @default 'img'
     */
    type?: 'img' | 'text' | 'combine';
}
export declare const Logo: import("react").NamedExoticComponent<LogoProps>;
