/** @noSelfInFile */ /** * Encode a string to base64. * @param input The string to encode. */ export declare function base64Encode(input: string): string; /** * Decode a base64 string. * @param input The base64 string to decode. */ export declare function base64Decode(input: string): string;