import { Branded } from 'schemata-ts/brand'; import * as PB from 'schemata-ts/PatternBuilder'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface AsciiBrand { readonly Ascii: unique symbol; } /** * A string of ASCII characters. * * @since 1.0.0 * @category Model */ export declare type Ascii = Branded; /** * @since 1.0.0 * @category Model */ export declare type AsciiS = SchemaExt; /** * @since 1.0.0 * @category Pattern */ export declare const ascii: PB.Pattern; /** * A string of ASCII characters. * * @since 1.0.0 * @category Schema */ export declare const Ascii: AsciiS; export {}; //# sourceMappingURL=Ascii.d.ts.map