export declare type _base64 = {
    encode: (input: string) => string;
    decode: (text: string) => string;
};