export interface IOptions { log?: boolean; } declare const Try: (value: () => any, options_?: IOptions) => Type; export default Try;