import { Enum, Strings, Info } from "@onebro/oba-common"; export declare type ApiUserID = Enum; export declare type ApiCredentials = Enum & Strings; export declare type ApiSettings = { checkConn?: boolean | number; requireKey?: boolean; } & Info; export declare type ApiVarsBase = Enum & Enum; export declare type OBAExpressApiVars = ApiVarsBase & Partial<{ settings: ApiSettings; consumers: ApiCredentials[]; providers: ApiCredentials[]; whitelist: ApiUserID[]; blacklist: ApiUserID[]; }>;