import { CardProps } from 'antd/lib/card'; export { default as LeftMiddleLayout } from './leftMidLayout'; export { default as LeftRightLayout } from './leftRightLayout'; export { default as MainLayout } from './mainLayout'; export { default as UpDownLayout } from './upDownLayout'; interface ICardProps extends CardProps { display?: 'flex'; direction?: 'row' | 'column'; } interface IContainerProps { direction?: 'row' | 'column'; } interface IFlexProps { direction?: 'row' | 'column'; wrap?: 'nowrap' | 'wrap'; justify?: 'start' | 'end' | 'center' | 'between' | 'around'; align?: 'start' | 'end' | 'center' | 'stretch'; alignContent?: 'start' | 'end' | 'center' | 'between' | 'around' | 'stretch'; } export declare const Flex: import("styled-components").StyledComponent<"div", any, IFlexProps, never>; export declare const FlexItem: import("styled-components").StyledComponent<"div", any, IFlexProps, never>; export declare const Container: import("styled-components").StyledComponent<"div", any, IFlexProps & IContainerProps, never>; export declare const Card: import("styled-components").StyledComponent; export declare function px2rem(px?: number | string): string | undefined;