UNPKG

reablocks

Version:
11 lines (9 loc) 285 B
import { ListTheme } from '../ListTheme'; import { FC, InputHTMLAttributes } from 'react'; export type ListHeaderProps = InputHTMLAttributes<HTMLDivElement> & { /** * Theme for the List. */ theme?: ListTheme; }; export declare const ListHeader: FC<ListHeaderProps>;