import { CheckboxProps, ListItemTextProps, ListProps } from '@mui/material'; import * as React from 'react'; import { Styles } from '../react-types'; import { SelectOption } from './package-types'; interface OwnProps { items: SelectOption[]; checked?: V[]; onChange?: (value: V[]) => void; checkboxProps?: Omit; listProps?: ListProps; listItemTextProps?: ListItemTextProps; initialChecked?: V[]; onAdd?: (value: V) => void; onRemove?: (value: V) => void; } /** * CheckboxList Props * * @public */ export type Props = React.PropsWithChildren> & StyleProps; /** * CheckboxList * * @public * @param {Props} props * @returns {JSX.Element} * @example * ```tsx * function UncontrolledComponent(props) { * return * } * * function ControlledComponent(props){ * return * } * ``` */ export declare function CheckboxList(props: Props): JSX.Element; declare const useStyles: (params: void, styleOverrides?: { props: { classes?: Record | undefined; } & Record; ownerState?: Record | undefined; } | undefined) => { classes: Record<"root" | "checkboxListItemRoot", string>; theme: import("@mui/material").Theme; css: import("tss-react").Css; cx: import("tss-react").Cx; }; type StyleProps = Styles; export {};