import { BoxProps } from "../Box"; import * as React from "react"; export type FixedProps = BoxProps & React.RefAttributes; declare const Fixed: React.ForwardRefExoticComponent; export default Fixed;