/**
 * Check if a string is base64 encoded
 * @param str - The string to check
 * @returns true if the string is base64 encoded
 */
export declare function isBase64(str: string): boolean;
