import { StyledComponent } from 'styled-components'; import { Card as AntCard } from 'antd'; import { CardProps } from 'antd/lib/card'; interface ISiderProps { width?: string | number; } declare const LeftRightLayout: StyledComponent & { Header: StyledComponent<'div', any, {}, any>; Middle: StyledComponent<'div', any, {}, any>; Sider: StyledComponent<'div', any, ISiderProps, any>; Content: StyledComponent<'div', any, {}, any>; }; export default LeftRightLayout;