import { type Validator } from 'valgen';
import { DECODER, ENCODER } from '../../constants.js';
import { NumberType } from './number.type.js';
export declare class BigintType extends NumberType {
    constructor(attributes?: Partial<BigintType>);
    protected [DECODER](properties: Partial<this>): Validator;
    protected [ENCODER](properties: Partial<this>): Validator;
}
