import { Branded } from 'schemata-ts/brand'; import * as PB from 'schemata-ts/PatternBuilder'; import { SchemaExt } from 'schemata-ts/SchemaExt'; interface BitcoinAddressBrand { readonly BitcoinAddress: unique symbol; } /** * Represents strings which are valid Bitcoin addresses. * * @since 1.0.0 * @category Model */ export declare type BitcoinAddress = Branded; /** * @since 1.0.0 * @category Pattern */ export declare type BitcoinAddressS = SchemaExt; /** * @since 1.0.0 * @category Pattern */ export declare const bitcoinAddress: PB.Pattern; /** * Represents strings which are valid Bitcoin addresses. * * @since 1.0.0 * @category Schema */ export declare const BitcoinAddress: BitcoinAddressS; export {}; //# sourceMappingURL=BitcoinAddress.d.ts.map