import { ReactNode, RefObject } from 'react'; import { TIsVisible } from '../../types/props'; interface IProps { isVisible: TIsVisible; setIsVisible: (isVisible: TIsVisible) => void; withPortal: boolean; children: ReactNode; inputRef: RefObject; } declare function Layer({ isVisible, setIsVisible, withPortal, children, inputRef, }: IProps): import("react/jsx-runtime").JSX.Element; export default Layer;