/**
 * Copyright (c) 2020-present, Goldman Sachs
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import { type MappingEditorState } from '../../../../stores/editor/editor-state/element-editor-state/mapping/MappingEditorState.js';
import { type MappingExecutionState, MappingExecutionEmptyInputDataState, MappingExecutionObjectInputDataState, MappingExecutionFlatDataInputDataState, MappingExecutionRelationalInputDataState } from '../../../../stores/editor/editor-state/element-editor-state/mapping/MappingExecutionState.js';
import { SetImplementation, RelationalInputType } from '@finos/legend-graph';
import { CODE_EDITOR_LANGUAGE } from '@finos/legend-code-editor';
export declare const ClassMappingSelectorModal: ((props: {
    mappingEditorState: MappingEditorState;
    hideClassMappingSelectorModal: () => void;
    changeClassMapping: (setImplementation: SetImplementation | undefined) => void;
    classMappingFilterFn?: (setImplementation: SetImplementation) => boolean;
}) => import("react/jsx-runtime").JSX.Element) & {
    displayName: string;
};
export declare const getRelationalInputTestDataEditorLanguage: (type: RelationalInputType) => CODE_EDITOR_LANGUAGE;
export declare const MappingExecutionObjectInputDataBuilder: ((props: {
    inputDataState: MappingExecutionObjectInputDataState;
}) => import("react/jsx-runtime").JSX.Element) & {
    displayName: string;
};
export declare const MappingExecutionFlatDataInputDataBuilder: ((props: {
    inputDataState: MappingExecutionFlatDataInputDataState;
}) => import("react/jsx-runtime").JSX.Element) & {
    displayName: string;
};
/**
 * Right now, we always default this to use Local H2 connection.
 */
export declare const MappingExecutionRelationalInputDataBuilder: ((props: {
    inputDataState: MappingExecutionRelationalInputDataState;
}) => import("react/jsx-runtime").JSX.Element) & {
    displayName: string;
};
export declare const MappingExecutionEmptyInputDataBuilder: ((props: {
    inputDataState: MappingExecutionEmptyInputDataState;
    changeClassMapping: (setImplementation: SetImplementation | undefined) => void;
    showClassMappingSelectorModal: () => void;
}) => import("react/jsx-runtime").JSX.Element) & {
    displayName: string;
};
export declare const MappingExecutionInputDataBuilder: ((props: {
    executionState: MappingExecutionState;
}) => import("react/jsx-runtime").JSX.Element) & {
    displayName: string;
};
export declare const MappingExecutionBuilder: ((props: {
    executionState: MappingExecutionState;
}) => import("react/jsx-runtime").JSX.Element) & {
    displayName: string;
};
//# sourceMappingURL=MappingExecutionBuilder.d.ts.map