UNPKG

@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.

14 lines (13 loc) 933 B
/// <reference types="react" /> import { Theme } from '@mui/material'; import { AutocompleteProps } from './types'; import { MUIStyledCommonProps } from '@mui/system'; export declare const classes: { noOptionsMessage: string; input: string; }; export declare const Autocomplete: import("@emotion/styled").StyledComponent<import("@mui/material").AutocompleteProps<unknown, boolean, boolean, boolean, import("react").ElementType<any>> & MUIStyledCommonProps<Theme> & AutocompleteProps<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>, {}, {}>;