import type { TabLayoutChangePayload, TabLayoutClosePayload, TabLayoutOptions, TabLayoutTab } from "../TabLayout/TabLayout.types.js"; export interface TabLayoutProps extends Omit, Record { tabs: TabLayoutTab[]; onAdd?: TabLayoutOptions["onAdd"]; } export interface TabLayoutChangeDetail extends TabLayoutChangePayload { } export interface TabLayoutCloseDetail extends TabLayoutClosePayload { } export declare function registerTabLayoutElement(): CustomElementConstructor | undefined; //# sourceMappingURL=tab-layout.d.ts.map