import { TextFieldProps } from '@mui/material'; import * as React from 'react'; import { Styles } from '../react-types'; import { type Props as PxPopoverProps } from './px-popover'; interface OwnProps extends Omit { } /** * Definition of PopoverInput Props type. */ export type Props = React.PropsWithChildren & TextFieldProps & StyleProps; /** * * render a popover with input * * @public * @param {Props} props * @returns {JSX.Element} * * @example * Here's an example: * * ```ts * import { PopoverInput } from '@front.zen/mui' * * export function MyComponent() { * return ; * } * ``` */ export declare function PopoverInput(props: Props): JSX.Element; declare const useStyles: (params: void, styleOverrides?: { props: { classes?: Record | undefined; } & Record; ownerState?: Record | undefined; } | undefined) => { classes: Record<"root" | "popper" | "rootFullWidth" | "textFieldRoot" | "textFieldRootFullWidth", string>; theme: import("@mui/material").Theme; css: import("tss-react").Css; cx: import("tss-react").Cx; }; type StyleProps = Styles; export {};