import React from 'react'; import { KeyWiseTransferItem } from 'antd/lib/transfer/index'; import { OmitProp, OmitProps, TransferListBodyProps as AntdTransferListBodyProps } from 'antd/lib/transfer/ListBody'; export { OmitProps }; export type { OmitProp }; export interface TransferListBodyProps extends AntdTransferListBodyProps { footerDom?: React.ReactNode; } interface TransferListBodyState { current: number; } declare class ListBody extends React.Component, TransferListBodyState> { state: { current: number; }; static getDerivedStateFromProps({ filteredRenderItems, pagination }: TransferListBodyProps, { current }: TransferListBodyState): { current: number; }; onItemSelect: (item: RecordType) => void; onItemRemove: (item: RecordType) => void; onPageChange: (current: number) => void; getItems: () => import("antd/lib/transfer/list").RenderedItem[]; render(): JSX.Element; } export default ListBody;