You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
421 B
13 lines
421 B
/// <reference types="react" />
|
|
import { Locale } from '../../interface';
|
|
import { GenerateConfig } from '../../generate';
|
|
export interface TimeHeaderProps<DateType> {
|
|
prefixCls: string;
|
|
value?: DateType | null;
|
|
locale: Locale;
|
|
generateConfig: GenerateConfig<DateType>;
|
|
format: string;
|
|
}
|
|
declare function TimeHeader<DateType>(props: TimeHeaderProps<DateType>): JSX.Element;
|
|
export default TimeHeader;
|