import { RootType } from '../../utils/rootType';
export default function ({ rootType, hasVariables, queryName, returnType, isWatchQuery, }: Props): string;
interface Props {
    rootType: RootType;
    hasVariables: boolean;
    queryName: string;
    returnType: any;
    isWatchQuery?: boolean;
}
export {};
