import React from 'react'; import { Reference, SchemaType } from '@sanity/types'; import { InsertEvent } from '../arrays/ArrayOfObjectsInput/types'; import { BaseInputProps } from './types'; export interface Props extends BaseInputProps { value: OptionalRef; isSortable: boolean; insertableTypes?: SchemaType[]; onInsert?: (event: InsertEvent) => void; } declare type PartialPick = Omit & { [P in K]?: T[K]; }; declare type OptionalRef = PartialPick; export declare const ArrayItemReferenceInput: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=ArrayItemReferenceInput.d.ts.map