import { VirtualListChangeOpts } from '@sanity/ui'; import React from 'react'; import { DocumentListPaneItem, Layout } from './types'; interface DocumentListPaneContentProps { childItemId: string; error: { message: string; } | null; filterIsSimpleTypeContraint: boolean; fullList: boolean; isActive: boolean; isLoading: boolean; items: DocumentListPaneItem[] | null; layout?: Layout; onListChange: (opts: VirtualListChangeOpts) => void; onRetry?: (event: unknown) => void; showIcons: boolean; } export declare function DocumentListPaneContent(props: DocumentListPaneContentProps): React.JSX.Element; export {}; //# sourceMappingURL=DocumentListPaneContent.d.ts.map