import './Logo.scss';
import type { FC } from 'react';
import { StaticImport } from '../@primitives/Image/ImageTypes';
type Props = {
    colorVariant?: 'white' | 'black';
    logoUrl?: StaticImport | string;
    isnextjs?: boolean;
    width?: number;
    height?: number;
};
declare const Logo: FC<Props>;
export default Logo;
