import * as z from "zod/v3"; /** * Describes the request body of the /getdatasourceconfig API call */ export type GetDatasourceConfigRequest = { /** * Datasource name for which config is needed. */ datasource: string; }; /** @internal */ export type GetDatasourceConfigRequest$Outbound = { datasource: string; }; /** @internal */ export declare const GetDatasourceConfigRequest$outboundSchema: z.ZodType; export declare function getDatasourceConfigRequestToJSON(getDatasourceConfigRequest: GetDatasourceConfigRequest): string; //# sourceMappingURL=getdatasourceconfigrequest.d.ts.map