import type { FC, HTMLAttributes, ReactNode, Ref } from 'react';
import { type TestableProps } from '../../utils/testId';
export interface TopHeaderProps extends HTMLAttributes, TestableProps {
ref?: Ref;
children?: ReactNode;
}
export declare const TopHeader: FC;