import { FC } from 'react'; import { SizeType } from '../../util/global-props'; import './geenee-logo.component.scss'; declare type PropsType = { colorScheme?: 'dark' | 'light'; width?: number; composition?: 'vertical' | 'horizontal'; keyColor?: boolean; customKey?: string; onClick?: () => void; margin?: SizeType; }; export declare const OnePageLogo: FC; export {};