///
interface IProps {
columns?: any[];
dataSource?: any[];
onChange?: (val: any, key?: string) => void;
onPageChange?: (val: any) => void;
onSave?: (val: any, key?: string) => void;
onChangeStaus?: (val: any, key?: string) => void;
className?: string;
queryList?: [];
page?: number;
size?: number;
total?: number;
loading?: boolean;
}
declare function EditTable(props: IProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent;
export default _default;