/** * Convert string to Base64 * @param char String to convert to Base64 * @returns Base64 encoded string */ export declare const toBase64: (char: string) => string;