import { YwTableDialogProps } from '../../types'; declare const YwTableDialog: { ({ title, size, btnText, btnType, filterItems, columns, getTableData, dataSource, initialValues, btnDisabled, children, itemWidth, buttons, rowSelection, rowKey, rowAlign, showTotal, renderTotal, pagination, onClose, onSubmit, onOpen, onTableInit, okText, onOk, ...others }: YwTableDialogProps): JSX.Element; defaultProps: { btnType: string; size: string; btnDisabled: boolean; rowKey: string; rowSelection: any; pagination: {}; okText: string; buttons: any[]; onClose: () => void; onSubmit: () => void; }; }; export default YwTableDialog;