import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type V2ApisCreateApiResponseData = {
    /**
     * The unique identifier assigned to the newly created API.
     *
     * @remarks
     * Use this ID for all subsequent operations including key creation, verification, and API management.
     * Always begins with 'api_' followed by a unique alphanumeric sequence.
     *
     * Store this ID securely as it's required when:
     * - Creating API keys within this namespace
     * - Verifying keys associated with this API
     * - Managing API settings and metadata
     * - Listing keys belonging to this API
     *
     * This identifier is permanent and cannot be changed after creation.
     */
    apiId: string;
};
/** @internal */
export declare const V2ApisCreateApiResponseData$inboundSchema: z.ZodType<V2ApisCreateApiResponseData, z.ZodTypeDef, unknown>;
export declare function v2ApisCreateApiResponseDataFromJSON(jsonString: string): SafeParseResult<V2ApisCreateApiResponseData, SDKValidationError>;
//# sourceMappingURL=v2apiscreateapiresponsedata.d.ts.map