import { ObjectLiteral } from "@dhealth/contracts"; export declare enum OAuthEntityType { Custom = 0, Profile = 1, Activity = 2 } export interface OAuthEntity { readonly type: OAuthEntityType; readonly columns: string[]; toDocument(): ObjectLiteral; }