import * as React from 'react'; import type { KeyWiseTransferItem } from '.'; import type { RenderedItem, TransferListProps } from './list'; export declare const OmitProps: readonly ["handleFilter", "handleClear", "checkedKeys"]; export type OmitProp = (typeof OmitProps)[number]; type PartialTransferListProps = Omit, OmitProp>; export interface TransferListBodyProps extends PartialTransferListProps { filteredItems: RecordType[]; filteredRenderItems: RenderedItem[]; selectedKeys: string[]; } export interface ListBodyRef { items?: RenderedItem[]; } declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>>; export default _default;