import { CombinedStandardProps } from "../core/types.cjs"; import { BaseSchema } from "../core/base.cjs"; //#region src/schemas/bigint.d.ts declare class BigIntSchemaType extends BaseSchema { private _min?; private _max?; constructor(); /** * Require minimum bigint value. * @param {bigint} n Minimum value. * @returns {BigIntSchemaType} New constrained schema. */ min(n: bigint): BigIntSchemaType; /** * Require maximum bigint value. * @param {bigint} n Maximum value. * @returns {BigIntSchemaType} New constrained schema. */ max(n: bigint): BigIntSchemaType; get ["~standard"](): CombinedStandardProps; } //#endregion export { BigIntSchemaType }; //# sourceMappingURL=bigint.d.cts.map