UNPKG

@sanity/form-builder

Version:
9 lines 356 B
import React from 'react'; import { TextInput } from '@sanity/ui'; declare type Props = Omit<React.ComponentProps<typeof TextInput>, 'onChange' | 'value'> & { value?: number; onChange: (year: number) => void; }; export declare const YearInput: ({ onChange, ...props }: Props) => React.JSX.Element; export {}; //# sourceMappingURL=YearInput.d.ts.map