export declare type config = Record<string, string | boolean | Array<object>>;
export interface template {
    name: string;
    iconPath: string;
    iconOpacity: number;
    color: string;
    config?: config;
}
export default class templateService {
    static get(templateApiUrl: string, domain: string): Promise<template | null>;
}
//# sourceMappingURL=templateService.d.ts.map