export declare const ContainerRowCSS: import("styled-components").RuleSet; export declare const ContainerColumnCSS: import("styled-components").RuleSet; export declare const ElementAppearTransitionInner: ({ children, direction, widthFull, withoutPadding, }: { children: React.ReactNode; direction?: "row" | "column" | undefined; widthFull?: boolean | undefined; withoutPadding?: boolean | undefined; }) => JSX.Element; export declare const ElementAppearTransition: ({ children, isVisible, widthFull, direction, withoutPadding, skipAnimation, }: { children: React.ReactNode; isVisible: boolean; widthFull?: boolean | undefined; direction?: "row" | "column" | undefined; withoutPadding?: boolean | undefined; skipAnimation?: boolean | undefined; }) => JSX.Element | null;