/// import { MarginTypes } from "../../Style/Margin"; import { PaddingTypes } from "../../Style/Padding"; export interface StyledProps extends MarginTypes, PaddingTypes { /** * current element id * @defaultValue "" * @optional * @type string */ id?: React.HtmlHTMLAttributes["id"]; /** * Represent a text string in typography component */ children?: React.ReactNode; /** * If `true`, the left and right padding is removed. * @default false */ disableGutters?: boolean; /** * The element to display at the end of ListItem. */ secondaryAction?: React.ReactNode; /** * The callback function that is fired when the button is clicked. * @param {React.MouseEvent} event The event source of the callback. * @defaultValue undefined * @optional * @type React.MouseEventHandler * @example * onClick={(event) => {}} * onClick={handleClick} */ onClick?: React.MouseEventHandler | undefined; } declare const ThemedComponent: (props: StyledProps) => import("react/jsx-runtime").JSX.Element; export default ThemedComponent; //# sourceMappingURL=Styled.d.ts.map