/// <reference types="react" />
import { FormComponentProps, FormComponent } from '@tomino/dynamic-form';
export declare type ApolloMutationProps = {
    mutation: string;
    target: string;
    variables: {
        name: string;
        value: string;
        type: string;
    }[];
    boundVariables: {
        name: string;
        source: string;
    }[];
    onResult: string;
    onError: string;
    clickHandler: string;
    onSubmit: string;
    successAlert: string;
    errorAlert: string;
    fakeData: string;
};
export declare const ApolloMutation: (props: FormComponentProps<ApolloMutationProps, any, any>) => JSX.Element;
export declare const ApolloMutationView: FormComponent;
