/// export interface Props { vertical?: boolean; className?: string; flow?: "start" | "end" | "spaceAround" | "spaceBetween" | "stretch"; children?: any; } declare const Container: ({ vertical, className, children, flow }: Props) => JSX.Element; export default Container;