import { FunctionComponent } from 'react'; import { StylingFunction } from 'react-base16-styling'; interface Props { styling: StylingFunction; onSearch: (value: string) => void; onCommit: () => void; onSweep: () => void; hideMainButtons: boolean | undefined; hasSkippedActions: boolean; hasStagedActions: boolean; } declare const ActionListHeader: FunctionComponent; export default ActionListHeader;