export interface Row {
    id: string;
    metadata?: Record<string, unknown>;
    [key: string]: unknown;
}
export declare function getRowStr(facet: string, row: Row): string;
