interface GetOptions { phase?: number; step?: string; } /** * Return full checkpoint state as JSON to stdout. * * Filtering: both --phase and --step narrow the returned event list. * No arguments -> return every recorded event. */ export declare function checkpointGet(options: GetOptions): void; export {};