import { VercelCore } from "../core.js";
import { RequestOptions } from "../lib/sdks.js";
import { CreateKmsSigningKeyRequest, CreateKmsSigningKeyResponseBody } from "../models/createkmssigningkeyop.js";
import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/httpclienterrors.js";
import { ResponseValidationError } from "../models/responsevalidationerror.js";
import { SDKValidationError } from "../models/sdkvalidationerror.js";
import { VercelError } from "../models/vercelerror.js";
import { APIPromise } from "../types/async.js";
import { Result } from "../types/fp.js";
/**
 * Create a signing key
 *
 * @remarks
 * Create a new signing key for a KMS issuer. Depending on the activation mode, the key is activated automatically once its public key has propagated, or manually via the activate endpoint.
 *
 * If set, this operation will use {@link Security.bearerToken} from the global security.
 */
export declare function kmsCreateKmsSigningKey(client: VercelCore, request: CreateKmsSigningKeyRequest, options?: RequestOptions): APIPromise<Result<CreateKmsSigningKeyResponseBody, VercelError | ResponseValidationError | ConnectionError | RequestAbortedError | RequestTimeoutError | InvalidRequestError | UnexpectedClientError | SDKValidationError>>;
//# sourceMappingURL=kmsCreateKmsSigningKey.d.ts.map