import { type StyledProps } from "./Styled"; /** * moaui Styled Tab * * @param props - value, label, onChange, disabled, selected, width, height, fontSize, minWidth, minHeight * @example * {}} * disabled={false || true} * selected={false || true} * width="auto" * height="auto" * fontSize="h1" || "body1" || "body2" || "body3" * minWidth="auto" * minHeight="auto" * /> * @returns React.Element */ declare const Tab: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; value: string; label: string; onChange: () => void; disabled: boolean; selected: boolean; width: string; height: string; fontSize: import("../../Common/UnionType").CustomUnionType; minWidth: string; minHeight: string; }; export default Tab; export { type StyledProps as TabProps, SampleProps as TabSample, }; //# sourceMappingURL=index.d.ts.map