import { Style } from 'inlines'; export type HeaderProps = { initialData?: { id?: string; name?: string; updatedAt?: number; createdAt?: number; [key: string]: any; }; schemaType?: string; style?: Style; }; export declare const Header: ({ initialData, schemaType, style }: HeaderProps) => import("react/jsx-runtime").JSX.Element;