import { ScriptFile } from './script_file'; export declare class Draft_folder { readonly folder_path: string; constructor(folder_path: string); list_drafts(): Promise; remove(draft_name: string): Promise; inspect_material(draft_name: string): Promise; load_template(draft_name: string): Promise; duplicate_as_template(template_name: string, new_draft_name: string, allow_replace?: boolean): Promise; private copyFolder; }