/** * Creates a tab container that allows user to toggle visibility * of HTML elements by clicking tabs, with only one tab's content * visible at a time. * @param contents An object with HTML element properties. * The property names will become the tab labels. */ export declare function createTabContainer(contents: { [label: string]: HTMLElement; }): HTMLDivElement;