/**
 * This file was auto-generated by Fern from our API Definition.
 */
export interface DocumentSearchResult {
    content?: string;
    createdAt?: string;
    documentId?: string;
    embedding?: number[];
    isEmbedded?: boolean;
    metadata?: Record<string, unknown>;
    score?: number;
    updatedAt?: string;
    uuid?: string;
}
