import * as schema from '../../schema';
import { AbsType } from './AbsType';
import type { SchemaOf, Type } from '../types';
export declare class BinType<T extends Type = any> extends AbsType<schema.BinSchema> {
    protected type: T;
    constructor(type: T, options?: schema.Optional<schema.BinSchema>);
    format(format: schema.BinSchema['format']): this;
    min(min: schema.BinSchema['min']): this;
    max(max: schema.BinSchema['max']): this;
    getSchema(): schema.BinSchema<SchemaOf<T>>;
    getOptions(): schema.Optional<schema.ArrSchema<SchemaOf<T>>>;
    toString(tab?: string): string;
}
//# sourceMappingURL=BinType.d.ts.map