import { ScheduleProps } from 'aws-cdk-lib/aws-scheduler'; import { NodejsFunction } from 'aws-cdk-lib/aws-lambda-nodejs'; import type { FunctionSchedule } from './factory.js'; type ScheduleConfig = Pick; /** * Converts function schedules to schedule props. * @param lambda The Lambda function to associate with the schedules. * @param functionSchedules The function schedules to convert. * @returns An array of schedule props. */ export declare const convertFunctionSchedulesToScheduleProps: (lambda: NodejsFunction, functionSchedules: FunctionSchedule | FunctionSchedule[]) => ScheduleConfig[]; export {}; //# sourceMappingURL=schedule_parser.d.ts.map