/// export interface OwnerModel { name: string; address: string; } export declare enum AttachmentTypes { FILE_ATTACHMENT = "#microsoft.graph.fileAttachment" } export interface QueryParam { search?: { [key: string]: string; } | string; count?: boolean; orderBy?: string; top?: number; } export declare const formatODataQuery: (t: QueryParam) => import("lodash").Dictionary;