import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";
import { VercelError } from "./vercelerror.js";
export declare const BoughtTooRecentlyCode: {
    readonly BoughtTooRecently: "bought_too_recently";
};
export type BoughtTooRecentlyCode = ClosedEnum<typeof BoughtTooRecentlyCode>;
/**
 * The domain was bought too recently to determine verification status.
 */
export type BoughtTooRecentlyData = {
    status: number;
    code: BoughtTooRecentlyCode;
    message: string;
};
/**
 * The domain was bought too recently to determine verification status.
 */
export declare class BoughtTooRecently extends VercelError {
    status: number;
    code: BoughtTooRecentlyCode;
    /** The original data that was passed to this error instance. */
    data$: BoughtTooRecentlyData;
    constructor(err: BoughtTooRecentlyData, httpMeta: {
        response: Response;
        request: Request;
        body: string;
    });
}
/** @internal */
export declare const BoughtTooRecentlyCode$inboundSchema: z.ZodNativeEnum<typeof BoughtTooRecentlyCode>;
/** @internal */
export declare const BoughtTooRecently$inboundSchema: z.ZodType<BoughtTooRecently, z.ZodTypeDef, unknown>;
//# sourceMappingURL=boughttoorecently.d.ts.map