import { CommonProps } from '../../../components/chooser'; import React from 'react'; declare type Props = { boardId?: string; pipelineId?: string; stageId?: string; filterStageId?: (stageId?: string, boardId?: string, pipelineId?: string) => void; translator?: (key: string, options?: any) => string; } & CommonProps; declare type State = { stageId: string; boardId: string; pipelineId: string; }; declare class ItemChooser extends React.Component { private ref; constructor(props: any); onOverlayClose: () => void; clearFilter: (e: any) => void; renderBoardSelect(): JSX.Element; renderSelectChooser: () => JSX.Element; onChangeField: (name: T, value: State[T]) => void; render(): JSX.Element; } export default ItemChooser; //# sourceMappingURL=ItemChooser.d.ts.map