import * as React from 'react'; export declare class ActionListHeader extends React.Component { render(): JSX.Element; private renderButton; private onButtonPress; } interface ActionListHeaderProps { styling: any; onSearch: (searchStr: string) => void; onCommit: () => void; onSweep: () => void; hasSkippedActions: boolean; hasStagedActions: boolean; } export {};