declare const $$embed: unique symbol; export interface GraphileEmbed { [$$embed]: true; kind: "GraphileEmbed"; value: T; } export declare function isEmbed(obj: any): obj is GraphileEmbed; export declare function embed(value: T): GraphileEmbed; export declare function gql(strings: TemplateStringsArray, ...interpolatedValues: Array): any; export {};