/**
 * Field mappings and searchable fields for each entity type
 */
export declare const EntityFieldMappings: Record<string, {
    searchableFields: string[];
    displayNames: Record<string, string>;
    summaryFields: string[];
    endpoint: string;
    listFunction: string;
    serverSideFilters?: string[];
    filterMappings?: Record<string, string>;
}>;
