import { ErrorHandlingOptions } from './error-handling-options.js'; import { TimeoutOptions } from './timeout-options.js'; import { BearerAuthOptions } from './bearer-auth-options.js'; import { BasicAuthOptions } from './basic-auth-options.js'; import { RetryOptions } from './retry-options.js'; import { CustomHeaderOption } from './custom-header-option.js'; export interface ProtobufFetchRequest { /** Inline Protocol Buffers (.proto) definition content. */ protoSource: string | null; errorHandling?: ErrorHandlingOptions; timeout?: TimeoutOptions; bearerAuth?: BearerAuthOptions; basicAuth?: BasicAuthOptions; retries?: RetryOptions; customHeaders?: Array | null; documentation?: boolean | null; optionsObjectThreshold?: number | null; baseUrlEnvVar?: string | null; useImportMetaEnv?: boolean | null; useMiddleware?: boolean | null; useResultPattern?: boolean | null; useTypesBarrel?: boolean | null; responseDateTransformation?: boolean | null; } //# sourceMappingURL=protobuf-fetch-request.d.ts.map