import { default as React, ElementType } from 'react'; import { SxProps } from '@mui/material/styles'; interface ListItemWrapperProps { clickEventName?: string; component?: ElementType; onClick?: () => void; sx?: SxProps; } export declare const ListItemWrapper: React.FC>; export {};