export type PonytailLevel = "lite" | "full" | "ultra"; export interface PonytailState { active: boolean; level: PonytailLevel; startedAt: string; projectPath: string; } export declare function normalizeLevel(input?: string): PonytailLevel; export declare function startPonytail(cwd?: string, level?: string): PonytailState; export declare function readPonytail(cwd?: string): PonytailState | undefined; export declare function cancelPonytail(cwd?: string): void;