import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UnauthorizedDatasourceInstance } from "./unauthorizeddatasourceinstance.js"; export type CheckDatasourceAuthResponse = { /** * Datasource instances that require per-user OAuth authorization. Empty when all datasources are authorized. * * @remarks */ unauthorizedDatasourceInstances: Array; }; /** @internal */ export declare const CheckDatasourceAuthResponse$inboundSchema: z.ZodType; export declare function checkDatasourceAuthResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=checkdatasourceauthresponse.d.ts.map