@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
13 lines (12 loc) • 976 B
TypeScript
import { Theme } from '@mui/material';
import { DeprecatedAutocompleteProps } from './types';
import { MUIStyledCommonProps } from '@mui/system';
export declare const classes: {
noOptionsMessage: string;
input: string;
};
export declare const DeprecatedAutocomplete: import("@emotion/styled").StyledComponent<import("@mui/material").AutocompleteProps<unknown, boolean, boolean, boolean, import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements>> & MUIStyledCommonProps<Theme> & DeprecatedAutocompleteProps<any, false, false, false> & {
multiple: boolean;
}, {}, {}>;
export declare const Option: import("@emotion/styled").StyledComponent<MUIStyledCommonProps<Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
export declare const NoOptionsText: import("@emotion/styled").StyledComponent<import("../../dataDisplay/Typography").TypographyProps & MUIStyledCommonProps<Theme>, {}, {}>;