import type { StringAdapter } from '../string-adapter/index.js'; export declare function anyBase(sa: StringAdapter, srcAlphabet: string, dstAlphabet: string): (number: string) => string; export declare const BIN = "01"; export declare const OCT = "01234567"; export declare const DEC = "0123456789"; export declare const HEX = "0123456789abcdef";