interface Tab { tabId: string; [key: string]: any; } export declare function getFocusedElementId(): string; export declare function getFocusedTabIndex(tabs?: Tab[]): number; export declare function findElementAndFocus(elemId: string): void; export declare function isPromise(func: any): boolean; export {};