export interface CredentialCliCommandRequest { executable: string; args: string[]; input?: string; authEnvironment: { name: "BWS_ACCESS_TOKEN" | "BW_SESSION"; value: string; }; omitEnvironmentVariables?: readonly string[]; signal?: AbortSignal; } export interface CredentialCliCommandResult { exitCode: number; stdout: string; stderr: string; aborted?: boolean; timedOut?: boolean; outputLimitExceeded?: boolean; } /** Shared bounded process boundary for Bitwarden provider adapters. */ export declare function runCredentialCliCommand(request: CredentialCliCommandRequest): Promise; //# sourceMappingURL=credential-cli-command.d.ts.map