export interface IOptions { exception?: boolean; } declare const decrypt: (value_: string, privateValue: string, options_?: IOptions) => any | undefined | Error; export default decrypt;