import * as Scure from '@scure/base';
import { BytesOrCopiable, Copied } from '../../libs/copiable/index.js';

declare function fromScure(scure: typeof Scure): {
    encodeOrThrow: (bytes: BytesOrCopiable) => string;
    decodeOrThrow: (text: string) => Copied;
};

export { fromScure };
