export type MaybePromise<T> = Promise<T> | T;
