import React from 'react'; import XBaseLayout, { XBaseLayoutProps } from "../base/XBaseLayout"; import { SwipeActionProps } from "./swipe/SwipeAction"; export interface XSwipeActionProps extends XBaseLayoutProps, SwipeActionProps { } /** * 滑动一个元素,显示一组按钮 * @name 滑动 * @groupName 折叠显示 */ export default class XSwipeAction extends XBaseLayout { static ComponentName: string; static defaultProps: { lazyChildren: boolean; styleType: string; hasBox: boolean; showBorder: any; overflow: string; boxStyle: {}; width: string; height: string; visible: boolean; grid: number[]; gridSpan: number[]; parent: string; pureRender: boolean; dataSourceUrl: string; filterData: {}; mustHasFilter: boolean; }; constructor(props: XSwipeActionProps); render(): React.JSX.Element; }