UNPKG

reablocks

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