import type { RowProps } from 'antd/lib/row'; import React from 'react'; export interface MyRowProps extends RowProps { colSpan?: number; visible?: boolean; gutterVertical: number; gutterHorizontal: number; children?: React.ReactNode[]; backgroundType?: any; appId?: string; getEngineApis?: any; } declare const MyRow: React.FC; export default MyRow;