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>;
