import { Awaitable } from '@blackglory/prelude';
export declare function getResultAsync<T>(fn: () => Awaitable<T>): Promise<T | undefined>;
