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