import type { LogoConfig } from '../../core/types';
export type LogoProps = {
    config: LogoConfig;
    className?: string;
};
export declare function Logo({ config, className, ...otherProps }: LogoProps): JSX.Element | null;
