import React from 'react'; import { type CSSObject } from 'restyle'; export type LogoProps = { variant: 'gitHost'; css?: CSSObject; } & React.SVGProps & { source?: string; }; export declare function Logo(props: LogoProps): Promise;