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