import type { ObjectField } from './ObjectField.js';
export interface ObjectInputProps<Definition> {
    field: ObjectField<Definition>;
}
export declare function ObjectInput<Definition>({ field }: ObjectInputProps<Definition>): import("react/jsx-runtime").JSX.Element;
