import { LabelProps } from "../Label"; import React from "react"; export type TabSelectOption = { label: string; value: string; }; export type TabSelectProps = Omit, "onChange"> & { options?: TabSelectOption[]; value?: TabSelectOption; onChange?: (option: TabSelectOption) => void; label?: string; labelProps?: LabelProps; error?: boolean; disabled?: boolean; selectContainerProps?: React.HTMLAttributes; selectedBackgroundElementProps?: React.HTMLAttributes; }; export default function TabSelect({ options, value, onChange, label, labelProps, error, disabled, selectContainerProps, selectedBackgroundElementProps, ...props }: TabSelectProps): React.JSX.Element;