import { IViewProps } from '../View'; export interface IAbsoluteProps { readonly top?: string | number; readonly bottom?: string | number; readonly left?: string | number; readonly right?: string | number; } declare const Absolute: ({ top, left, right, bottom, children, ...props }: IAbsoluteProps & IViewProps) => JSX.Element; export default Absolute;