//#region src/raw.d.ts /** * Returns a GraphQL query string by interpolating variables into a template string. * @param {TemplateStringsArray} raw - The template string. * @param {...string} keys - The variables to interpolate. * @returns {string} The interpolated GraphQL query string. */ declare function gql(raw: TemplateStringsArray, ...keys: string[]): string; //#endregion export { gql };