import type { GraphQLSchema } from 'graphql';
export declare function generateIncontextSDKTypes(options: {
    schema: GraphQLSchema;
    name: string;
    contextVariables: Record<string, string>;
    flattenTypes: boolean;
    codegenConfig: any;
    unifiedContextIdentifier: string;
}): Promise<{
    identifier: string;
    codeAst: string;
}>;
export declare function generateUnifiedContextTypeFromIdentifiers(identifiers: string[]): string;
