import { default as React, ReactNode } from 'react'; export type AutocompleteNoOptionsProps = { /** * className for the element. */ className?: string; /** * The visual style of the element. * @default info */ variant?: 'info' | 'warning'; /** * The content of the AutocompleteNoOptions. */ children: ReactNode; }; export declare const AutocompleteNoOptions: ({ children, className, variant, ...rest }: AutocompleteNoOptionsProps) => React.JSX.Element; //# sourceMappingURL=AutocompleteNoOptions.d.ts.map