import React from "react"; import type { PolymorphicComponentProps } from "../../types"; export type LogoProps = { ariaLabel?: string; "data-testid"?: string; }; type LogoComponent = (props: PolymorphicComponentProps) => React.ReactNode | null; export declare const Logo: LogoComponent; export {};