/** * Check if a string looks like a base64 encoded string. */ declare function looksLikeBase64(str: string): boolean; export { looksLikeBase64 };