import * as React from 'react'; import { type StackProps } from './Stack'; import type { PropsWithChildren } from 'react'; interface PositionProps { top?: number; right?: number; bottom?: number; left?: number; } declare const AbsoluteStack: (props: PropsWithChildren) => React.JSX.Element; export default AbsoluteStack; //# sourceMappingURL=AbsoluteStack.d.ts.map