export type ValueOrError = { value?: T; error?: any; }; export declare function getOrCatch(getValue: () => Promise): Promise>; export declare function getOrCatch(getValue: () => T): ValueOrError;