export declare type Direction = 'horizontal' | 'vertical'; declare type ContainerProps = { direction: Direction; }; export declare const Container: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, ContainerProps, never>; export {};