import { SxProps } from '@u_ui/system'; import * as React from 'react'; import { PopperProps as BasePopperProps } from './BasePopper.types'; import { Theme } from '../styles'; export interface PopperProps extends Omit { /** * The component used for the root node. * Either a string to use a HTML element or a component. */ component?: React.ElementType; /** * The components used for each slot inside the Popper. * Either a string to use a HTML element or a component. * * @deprecated use the `slots` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). * @default {} */ components?: { Root?: React.ElementType; }; /** * The props used for each slot inside the Popper. * * @deprecated use the `slotProps` prop instead. This prop will be removed in v7. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/). * @default {} */ componentsProps?: BasePopperProps['slotProps']; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; } declare const Popper: React.ForwardRefExoticComponent>; export default Popper;