export declare function tryInOrder<T>(functions: (() => Promise<T>)[]): Promise<T>;
export declare function tryInOrderLabeled<T>(functions: {
    label: string;
    func: (() => Promise<T>);
}[]): Promise<T>;
