import type { SummaryProps } from 'alinea/core/media/Summary';
import type { Schema } from 'alinea/core/Schema';
import type { ComponentType } from 'react';
import type { ExporerItemSelect } from './Explorer.js';
export interface ExplorerItemProps {
    schema: Schema;
    entry: ExporerItemSelect;
    summaryView: 'summaryRow' | 'summaryThumb';
    defaultView: ComponentType<SummaryProps>;
}
export declare function ExplorerItem({ schema, entry, summaryView, defaultView }: ExplorerItemProps): import("react/jsx-runtime").JSX.Element;
