import * as React from 'react'; interface OwnProps { ignoreClickRef?: React.RefObject; onClose?: () => void; children: React.ReactElement; } type Props = OwnProps; /** * Close popover with click away from its children. (use `usePopoverInputContext`) * * @param {Props} props * @returns {JSX.Element} * @example * * ```ts * import { PopoverInput, ClickAwayClose } from '@front.zen/mui'; * * export function MyComponent() { * return ( * * * * * ); * } * ``` */ export declare function ClickAwayClose(props: Props): JSX.Element; export {};