import { type OmitX } from "@agyemanjp/standard"; import type { HtmlProps, Icon } from "../common"; import type { Component } from "../../common"; import { type ProperElement } from "../../element"; import { type ViewSelectableProps } from "../misc"; export declare const TabsPanel: Component; export type Props = HtmlProps & { headersInfo: OmitX, "selectedIndex" | "onSelectionChanged" | "children">; headerTemplate?: Component<{ headerElement: ProperElement; }>; selectedIndex?: number; onSelectionChanged?: (index: number) => void; };