import * as React from 'react';
import { FormComponentProps, FormComponent } from '@tomino/dynamic-form';
export declare type ApolloProps = {
    server: string;
    auth: string;
    tokenName: string;
    batchRequests: boolean;
    disable: boolean;
    authorised?: boolean;
    user?: string;
    roles?: string;
    id?: string;
};
export declare const ApolloProvider: React.FC<FormComponentProps<ApolloProps>>;
export declare const ApolloProviderView: FormComponent;
