import React from 'react'; import type { CommonPropsType } from '../../types'; import type { DataType } from '../../../configs/components/wd-table'; import '../style'; export declare const _defaultPageIndex = 1; export declare const _defaultPageSize = 10; export declare const TableOption: React.NamedExoticComponent; export declare const GlobalButton: React.NamedExoticComponent<{ classPrefix: string; slots: any; }>; export declare const WdTable: React.ForwardRefExoticComponent>; export interface WdTableProps extends CommonPropsType, DataType { isMock?: boolean; multipleSelect: boolean; mockEmpty?: boolean; } type TCompRef = { import: () => void; exportOptionalMode: () => void; export: () => void; deleteSelected: () => void; refresh: () => void; refreshKeepPage: () => void; deleteOne: (params: { id: string; }) => void; openOperationDialog: () => void; records?: any[]; total: number; pageNo: number; pageSize: number; selectedRecords: any[]; }; export {};