import { UiElement } from './ui-element';
export interface Feature {
    name: string;
    position: number;
    uiElements: UiElement[];
}
