import * as React from "react"; interface IProps { updateMutation: any; createMutation: any; children: (actions: { update: () => void; create: () => void; }, data: { loading: boolean; error: any; }) => React.ReactNode; } export declare function FormMutation(props: IProps): any; export {};