import type { Guard } from "../types";
export interface BigIntConstraints {
    min?: bigint;
    max?: bigint;
    positive?: boolean;
    negative?: boolean;
}
export declare function isBigInt(constraints?: BigIntConstraints): Guard<bigint>;
//# sourceMappingURL=isBigInt.d.ts.map