export interface NexusGatewayEndpointError { code: number; message: string; type: string; } export declare class NexusGatewayEndpointResponse> { success: boolean; value: TValue | null; references?: TReference | undefined; error?: NexusGatewayEndpointError | undefined; constructor(success: boolean, value: TValue | null, references?: TReference | undefined, error?: NexusGatewayEndpointError | undefined); static from>(value: TValue, references?: TReference): NexusGatewayEndpointResponse; static fromError(error: NexusGatewayEndpointError): NexusGatewayEndpointResponse; } //# sourceMappingURL=gateway.d.ts.map