import { Result } from 'ts-results'; import { CLValueBytesParsers, CLType, ResultAndRemainder } from './index'; export declare const TUPLE_MATCH_LEN_TO_TYPE: string[]; export declare const matchTypeToCLType: (type: any) => CLType; export declare const matchByteParserByCLType: (val: CLType) => Result; export declare const matchBytesToCLType: (bytes: Uint8Array) => ResultAndRemainder; export declare const padNum: (v: string, n?: number) => string;