import { PropsWithChildren } from 'react'; type AbsoluteProps = PropsWithChildren & { /** * absolute의 기준이 되는 요소를 정합니다. */ to: HTMLElement | null; offsetX?: string; offsetY?: string; position?: "top" | "right" | "bottom" | "left"; /** * ghi */ align?: "center" | "start" | "end"; autoMinWidth?: boolean; }; export { AbsoluteProps };