import { SpaceProps } from "styled-system"; import { SpacingUnitsTheme } from "../../tokens"; import { FlexProps } from "../Flex"; export interface BorderBoxProps extends FlexProps, SpaceProps { hover?: boolean; } /** * A `View` or `div` (depending on the platform) that has a common border * and padding set by default */ export declare const BorderBox: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").Substitute, BorderBoxProps>>;