import { CheckboxProps } from '@mui/material'; import * as React from 'react'; import { Styles } from '../react-types'; interface OwnProps { checked?: boolean; onClick: (event: React.MouseEvent) => void; checkboxProps?: Omit; } type Props = React.PropsWithChildren & StyleProps; export declare function CheckboxListItem(props: Props): JSX.Element; declare const useStyles: (params: void, styleOverrides?: { props: { classes?: Record | undefined; } & Record; ownerState?: Record | undefined; } | undefined) => { classes: Record<"root" | "listItemIconRoot", string>; theme: import("@mui/material").Theme; css: import("tss-react").Css; cx: import("tss-react").Cx; }; type StyleProps = Styles; export {};