import type { ScheduleTypeLike } from '@eggjs/tegg-types'; export declare class ScheduleMetadata { type: ScheduleTypeLike; scheduleData: T; immediate: boolean; disable: boolean; env?: string[]; constructor(type: ScheduleTypeLike, data: T, immediate: boolean, disable: boolean, env?: string[]); shouldRegister(env: string): boolean; }