import React from 'react'; import { IBoard, IPipeline, IStage } from '../types'; export declare const FormContainer: import("styled-components").StyledComponentClass, HTMLDivElement>, any, React.DetailedHTMLProps, HTMLDivElement>>; declare type Props = { boards: IBoard[]; pipelines: IPipeline[]; stages: IStage[]; boardId?: string; pipelineId?: string; stageId?: string; onChangeBoard: (value: string) => void; onChangePipeline: (value: string) => void; onChangeStage: (value: string, callback?: () => void) => void; callback?: () => void; translator?: (key: string, options?: any) => string; }; declare class BoardSelect extends React.Component { renderOptions: (option: any) => JSX.Element; renderSelect(placeholder: any, value: any, onChange: any, options: any): JSX.Element; renderContent(): JSX.Element; render(): JSX.Element; } export default BoardSelect; //# sourceMappingURL=BoardSelect.d.ts.map