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
437 B
13 lines
437 B
/// <reference types="react" />
|
|
import type { Locale } from '../../interface';
|
|
import type { GenerateConfig } from '../../generate';
|
|
export declare type 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;
|