import type { StateStore } from '../../state/store'; import type { Task } from '../types'; export type LocalTaskInput = { title: string; description?: string; acceptanceCriteria?: string[]; labels?: string[]; }; export declare function loadLocalTask(state: StateStore, idOrKey: string): Promise; export declare function createLocalTask(options: { state: StateStore; runId?: string; input: LocalTaskInput; }): Promise; export declare function parseLocalTaskFile(contents: string): LocalTaskInput;