import { BoxProps } from "../Box"; declare type BackgroundType = "none" | "white"; declare type BorderPosition = "none" | "all" | "top" | "right" | "bottom" | "left"; export interface PanelProps extends BoxProps { background?: BackgroundType; border?: BorderPosition; } export declare const Panel: (props: PanelProps) => JSX.Element; export {};