export declare function tryCatch(func: () => any): {
    data: any;
    error: any;
    success: boolean;
};
