import * as React from 'react'; import { ActionsDict } from './state'; export declare class ActionList extends React.Component { private flatListRef; componentDidUpdate(prevProps: any): void; render(): JSX.Element; private keyExtractor; private renderItemSeparator; private renderItem; } interface ActionListProps { actions: ActionsDict; actionIds: number[]; lastActionId: number; skippedActionIds: number[]; selectedActionId: number | null; startActionId: null | number; searchValue?: string; currentActionId: number; onSearch: (searchStr: string) => void; onCommit: () => void; onSweep: () => void; onToggleAction: (actionId: number) => void; onJumpToState: (actionId: number) => void; onSelect: (actionId: number) => void; styling: any; } export {};