import { PureQueryOptions } from "apollo-client"; import * as React from "react"; interface IProps { mutation: any; children: (action: (options: { variables: object; }) => void, data: { loading: boolean; error: any; }) => React.ReactNode; refetchQueries?: Array; } export declare function DeleteMutation(props: IProps): JSX.Element; export {};