import type { Schedule } from './scheduleMaker.js';
export interface GraphScheduleOptions {
    width?: number;
    height?: number;
    metrics?: 'cct' | 'intensity' | 'lux' | 'both' | 'all';
}
export declare function graphSchedule(schedule: Schedule, options?: GraphScheduleOptions): Promise<Buffer>;
//# sourceMappingURL=graphSchedule.d.ts.map