UNPKG

@wulperstudio/cms

Version:
21 lines (20 loc) 716 B
import { TextFieldProps, AutocompleteProps } from '@mui/material'; export interface AutocompleteCreatePropsModel<T> { textFieldProps?: TextFieldProps; label: string; id: string; showBorder: boolean; showBoxShadow?: boolean; colorLabel?: string; borderColor?: string; backgroundColor?: boolean; onChangeAutocomplete: <G>(value: G) => void; data: Array<T>; showDivider?: boolean; autocompleteProps?: AutocompleteProps<T, true, false, false>; value?: Array<T>; } export declare const AutocompleteCreate: <T extends { nickname: string; usid: string; }>({ textFieldProps, ...props }: AutocompleteCreatePropsModel<T>) => import("react/jsx-runtime").JSX.Element;