/// import { type ListItemButtonProps } from '@mui/material/ListItemButton'; import { MarginTypes } from '../../Style/Margin'; import { PaddingTypes } from '../../Style/Padding'; export type StyledProps = { /** * current element id * @defaultValue "" * @optional * @type string */ id?: React.HtmlHTMLAttributes["id"]; /** * Represent a text string in typography component */ children?: React.ReactNode; } & ListItemButtonProps & MarginTypes & PaddingTypes; declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; export default ThemedComponent; //# sourceMappingURL=Styled.d.ts.map