import type { SchemaType, User } from '@sanity/types';
import React from 'react';
interface SearchResultItemPreviewProps {
    documentId: string;
    presence?: User[];
    schemaType: SchemaType;
}
export default function SearchResultItemPreview({ documentId, presence, schemaType, }: SearchResultItemPreviewProps): React.JSX.Element;
export {};
//# sourceMappingURL=SearchResultItemPreview.d.ts.map