import React from 'react'; import { IStage } from '../types'; declare type Props = { type: string; stageId?: string; boardId: string; pipelineId: string; callback?: () => void; onChangeStage?: (stageId: string) => void; onChangePipeline: (pipelineId: string, stages: IStage[]) => void; onChangeBoard: (boardId: string) => void; autoSelectStage?: boolean; translator?: (key: string, options?: any) => string; }; declare const _default: { new (props: Readonly): { render(): JSX.Element; context: any; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callBack?: (() => void) | undefined): void; readonly props: Readonly<{ children?: React.ReactNode; }> & Readonly; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; }; new (props: Props, context?: any): { render(): JSX.Element; context: any; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callBack?: (() => void) | undefined): void; readonly props: Readonly<{ children?: React.ReactNode; }> & Readonly; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; }; contextType?: React.Context | undefined; }; export default _default; //# sourceMappingURL=BoardSelect.d.ts.map