import { Marker } from '@sanity/types'; import React from 'react'; import { ChangeIndicatorContextProvidedProps } from '../../change-indicators'; import { FormFieldPresence } from '../../presence'; export interface FormFieldProps { /** * @beta */ __unstable_changeIndicator?: ChangeIndicatorContextProvidedProps | boolean; /** * @beta */ __unstable_markers?: Marker[]; /** * @beta */ __unstable_presence?: FormFieldPresence[]; children: React.ReactNode; description?: React.ReactNode; /** * The unique ID used to target the actual input element */ inputId?: string; /** * The nesting level of the form field */ level?: number; title?: React.ReactNode; } export declare const FormField: React.NamedExoticComponent, "ref" | "as" | "height">>; //# sourceMappingURL=FormField.d.ts.map