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