import * as PB from 'schemata-ts/PatternBuilder'; import { SchemaExt } from 'schemata-ts/SchemaExt'; /** * Controls the output base of the encoded string. Currently only accepts 2, 8, 10, and * 16. It does not decode in this specified base, and accepts any base as input: 2, 8, 10, or 16. * * @since 1.0.0 */ export declare type BigIntFromStringParams = { readonly encodeToBase?: 2 | 8 | 10 | 16; }; /** * @since 1.0.0 * @category Model */ export declare type BigIntFromStringS = (params?: BigIntFromStringParams) => SchemaExt; /** * @since 1.0.0 * @category Pattern */ export declare const bigIntString: PB.Pattern; /** * Represents bigints converted from strings * * @since 1.0.0 * @category Schema */ export declare const BigIntFromString: BigIntFromStringS; //# sourceMappingURL=BigIntFromString.d.ts.map