import { LabContentType } from 'itlab-functions'; import { Icon } from 'itlab-icons'; import { Component } from 'vue'; type ContentEditor = { icon: Icon; label: string; component: Component; }; export declare function getContentEditor(contentType: LabContentType): ContentEditor & { type: LabContentType; }; export declare function getContentEditors(contentTypes: LabContentType[]): (ContentEditor & { type: LabContentType; })[]; export {};