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