export declare const base64Encode: (val: string) => string; export declare const base64EncodeObject: (obj: any) => string; export declare const base64Decode: (encodedString: string) => string | undefined; export declare const base64DecodeObject: (encodedObject: string | null) => T | undefined;