import { IAppConfig } from "../app/interface"; import { ILocalizationDescriptor } from "../localization/interface"; export interface IConfig { app: IAppConfig; localization: ILocalizationDescriptor; theme: { [x: string]: any; }; icons: { [iconName: string]: string; }; dimensions: () => number; httpRequest: { accessToken: { get: () => string; remove: () => void; }; refreshToken: { remove: () => void; }; history: { push: (url: string, params?: any) => void; }; }; getColorFromName: Array; } //# sourceMappingURL=index.d.ts.map