import type { HTMLProps, RefObject } from 'react';
import type { DatePickerProps } from './DatePicker';
type DatePickerPortalProps = HTMLProps<HTMLDivElement> & {
    skipPortal?: DatePickerProps['skipPortal'];
    alignment?: DatePickerProps['alignPicker'];
    targetElementRef?: RefObject<HTMLElement>;
};
export default function DatePickerPortal({ skipPortal, alignment, targetElementRef, children, }: DatePickerPortalProps): string | number | bigint | boolean | Iterable<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode>> | import("react/jsx-runtime").JSX.Element;
export {};
