import { JSX } from 'react'; import { PolymorphicComponentPropWithRef } from '../react-types'; type LogoBaseProps = { "data-color"?: "danger" | "info"; "data-env"?: string | null; href?: Href; }; export type LogoProps = PolymorphicComponentPropWithRef>; type LogoComponent = (props: LogoProps) => JSX.Element; export declare const Logo: LogoComponent; export {};