export interface TemplateItem {
    text: string;
    value: string;
    screenshots?: string;
}
export declare const h5List: {
    text: string;
    value: string;
}[];
export declare let TEMPLATE_LIST: Array<TemplateItem>;
export declare const TEMPLATE_MAP: {
    [name: string]: TemplateItem;
};
export declare function loadTemplates(): Promise<TemplateItem[]>;
