zent
Version:
一套前端设计语言和基于React的实现
7 lines (6 loc) • 389 B
TypeScript
/// <reference types="react" />
import { ISingleProps, IValueType, ISingleRelatedType } from './types';
export interface IYearPickerProps<T extends IValueType = 'string'> extends Omit<ISingleProps, 'valueType' | 'onChange'>, ISingleRelatedType<T> {
}
export declare const YearPicker: <T extends IValueType = "string">(props: IYearPickerProps<T>) => JSX.Element;
export default YearPicker;