import React, { ReactNode, SetStateAction, Dispatch } from 'react'; type ContentWithCloseAction = (action: { close(): void; }) => ReactNode; export interface DayPickerOverlayProps { /** @desc reference element를 구할 수 있는 컴포넌트여야 합니다. */ children: React.ReactNode; className?: string; content?: ReactNode | ContentWithCloseAction; /** @default getZIndex('picker') */ zIndex?: number; opened?: boolean; disabled?: boolean; onClose?: () => void; onOpen?: () => void; onCloseOutsidePress?: () => void; setOpened: Dispatch>; } export declare const DayPickerOverlay: ({ children, className, content, zIndex, opened: openProp, disabled, onClose, onOpen, onCloseOutsidePress, setOpened, }: DayPickerOverlayProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};