@wulperstudio/cms
Version:
Wulper Studio Library Components CMS
24 lines (23 loc) • 2.25 kB
TypeScript
import React from 'react';
export interface StyledTabsPropsModel {
children?: React.ReactNode;
value: number;
onChange: (event: React.SyntheticEvent, newValue: number) => void;
fullWidth?: boolean;
indicator?: boolean;
}
export declare const StyledTabs: import("@emotion/styled").StyledComponent<import("@mui/material").TabsOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
}, "variant" | "classes" | "className" | "style" | "children" | "sx" | "aria-label" | "aria-labelledby" | "onChange" | "value" | "slotProps" | "slots" | "action" | "orientation" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & StyledTabsPropsModel, {}, {}>;
export interface StyledTabPropsModel {
fullWidth?: boolean;
color?: string;
border?: string;
borderRadius?: string;
backgroundColor?: string;
backgroundColorSelected?: string;
colorSelected?: string;
}
export declare const StyledTab: import("@emotion/styled").StyledComponent<import("@mui/material").TabOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
}, "classes" | "className" | "style" | "children" | "disabled" | "sx" | "label" | "tabIndex" | "value" | "action" | "icon" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "iconPosition" | "wrapped"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & StyledTabPropsModel, {}, {}>;