import { default as React, JSX } from 'react';
export type IdentifierLogoProps = {
children: React.ReactNode;
className?: string;
} & JSX.IntrinsicElements['a'];
export declare const IdentifierLogo: ({ children, className, ...anchorProps }: IdentifierLogoProps) => JSX.Element;