export declare const RUNTIME_LIB_NAME = "@gqlts/runtime";
export interface Config {
    verbose?: boolean;
    endpoint?: string;
    useGet?: boolean;
    schema?: string;
    output?: string;
    methodPrefix?: string;
    methodSuffix?: string;
    headers?: Record<string, string>;
    scalarTypes?: {
        [k: string]: string;
    };
    'standalone-name'?: string;
    'standalone-compress'?: boolean;
    onlyEsModules?: boolean;
    onlyCJSModules?: boolean;
    sortProperties?: boolean;
}
