import * as react from 'react'; import { AbsoluteProps } from './Absolute.types.js'; /** * children 요소를 `to` props로 전달받은 요소를 기준으로 띄우는 역할입니다. * * 기본 position 이 `absolute` 로 설정되어 있어, 부모 요소에 영향을 받습니다. * * 만약 부모 요소와 관계 없이 화면에서 자유롭게 위치를 설정하고 싶다면, `Portal.Absolute` 또는 `Portal`과 함께 사용해주세요 * * > Docs의 예시는 ref가 깨져서 `show code` 용으로만 확인해주시면 됩니다. */ declare const Absolute: ({ to, children, position, align, offsetX, offsetY, autoMinWidth, }: AbsoluteProps) => react.ReactElement> | null; export { Absolute, AbsoluteProps };