export declare const onNextTick: <Output, T extends (...args: any) => Output>(action: T) => Promise<Output>;
export type WaitForResult<T> = {
    values?: T[];
    error?: unknown;
}[];
