export interface SelectedElement {
    elementId: string;
    children?: SelectedElement[] | null;
}
export type SelectingElementsType = {
    elementId: string;
    children?: SelectingElementsType[];
    parent?: SelectingElementsType | null;
    checked?: boolean;
    indeterminate?: boolean;
};
export type SelectingElementsObjectType = {
    [elementId: string]: SelectingElementsType;
};
