import { JSX, ParentComponent } from 'solid-js'; import { Ref } from '@material-solid/utils/refs'; type TabElement = HTMLButtonElement & { getContentRect(): DOMRect; }; type TabProps = Omit, "ref" | "role" | "children"> & { ref?: Ref; active: boolean; }; declare const Tab: ParentComponent; export { Tab, type TabElement, type TabProps };