UNPKG

rsuite

Version:

A suite of react components

12 lines (11 loc) 322 B
import React from 'react'; interface HeaderProps { formatStr: string; character: string; value: Date[] | null; activeKey?: 'start' | 'end'; onSelect?: (eventKey: 'start' | 'end') => void; clickable?: boolean; } declare function Header(props: HeaderProps): React.JSX.Element; export default Header;