/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type FC, type ReactNode } from 'react';
interface HeadProps {
    isRanking?: boolean;
    children: ReactNode;
    testId?: string;
}
export declare const Head: FC<HeadProps>;
export {};
