import type { CSSProperties, FunctionalComponent } from 'vue'; import 'ant-design-vue/es/layout/style'; import type { ContentWidth } from './typings'; export interface WrapContentProps { style?: CSSProperties; class?: string | string[] | any; isChildrenLayout?: boolean; location?: string | string[] | any; contentHeight?: number; contentWidth?: ContentWidth; } export declare const WrapContent: FunctionalComponent;