/*! * Copyright (c) Microsoft. All rights reserved. */ export interface ControlTemplate { type: string; name: string; variant?: string; properties?: { [name: string]: string; }; children?: ControlTemplate[]; }