/// import { type TypographyProps } from "../../"; export type StyledProps = { /** * current element id * @defaultValue "" * @optional * @type string */ id?: React.HtmlHTMLAttributes["id"]; /** * You can provide your own value. Otherwise, we fallback to the child position index. */ value?: any; /** * The label element. */ label?: string; /** * Set Tabs Value Control */ onChange?: (event: React.SyntheticEvent, value: any) => void; /** * If `true`, the component is disabled. * @defaultValue false */ disabled?: boolean; /** * If `true`, the component is selected. * @defaultValue false * @optional * @type boolean */ selected?: boolean; /** * The width of the Tab. */ width?: string | number; /** * The height of the Tab. */ height?: string | number; /** * The fontSize of the Tab. */ fontSize?: TypographyProps["size"]; /** * The minWidth of the Tab. */ minWidth?: string | number; /** * The minHeight of the Tab. */ minHeight?: string | number; }; declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; export default ThemedComponent; //# sourceMappingURL=Styled.d.ts.map