import type { Ref } from 'react'; import React, { type ReactNode } from 'react'; interface Props { border: boolean; children: ReactNode; forwardRef?: Ref; layout: 'vertical' | 'horizontal'; } export declare function Container({ border, layout, children, forwardRef }: Props): React.JSX.Element; export {};