export interface TaskFileSpec { text: string; why: string | null; doneWhen: string | null; plan: string | null; priority: string | null; template: string | null; dependsOn: string[]; } export declare function readTaskSpec(source: string, readStdin?: () => string): TaskFileSpec;