///
import type { FormDesignSetting } from '@sinoform/types';
import type { RestPageResponseInfo } from '@sinoui/use-rest-page-api';
export interface Props {
/**
* 当前行对应的数据
*/
rowData?: any;
/**
* 列表数据源
*/
dataSource?: RestPageResponseInfo;
/**
* 表单配置数据
*/
formDesignSetting?: FormDesignSetting;
}
export default function InRowEditButton({ rowData }: Props): JSX.Element;