type Param = {
    data: string;
    encryptionKey?: string;
    encryptionSalt?: string;
};
/**
 * # Encrypt String
 */
export default function encrypt({ data, encryptionKey, encryptionSalt, }: Param): string | null;
export {};