/// import PropTypes from 'prop-types'; import { OperationVariables } from '../../core'; import { MutationComponentOptions } from './types'; export declare function Mutation(props: MutationComponentOptions): JSX.Element | null; export declare namespace Mutation { const propTypes: { mutation: PropTypes.Validator; variables: PropTypes.Requireable; optimisticResponse: PropTypes.Requireable; refetchQueries: PropTypes.Requireable<((...args: any[]) => any) | (string | object | null | undefined)[]>; awaitRefetchQueries: PropTypes.Requireable; update: PropTypes.Requireable<(...args: any[]) => any>; children: PropTypes.Validator<(...args: any[]) => any>; onCompleted: PropTypes.Requireable<(...args: any[]) => any>; onError: PropTypes.Requireable<(...args: any[]) => any>; fetchPolicy: PropTypes.Requireable; }; } //# sourceMappingURL=Mutation.d.ts.map