import { type Fn } from '../../types/function.types.js'; export declare const maybe: (promise: Promise, catchCb?: Fn, finallyCb?: Function) => Promise<[data: T | null, error: string | null]>; export declare const maybeSync: (invoker: T, catchCb?: Fn, finallyCb?: Function) => [data: ReturnType | null, error: E | null]; //# sourceMappingURL=maybe.d.ts.map