import { ComponentResource, type ComponentResourceOptions, type Input, type Output } from '@pulumi/pulumi'; export type LambdaCronTriggerArgs = { name: string; lambdaFunction: { name: string; arn: Input; }; cronExpression: `cron(${string} ${string} ${string} ${string} ? ${string})`; lambdaExecutionInput?: object; projectId: string; }; export declare class LambdaCronTrigger extends ComponentResource { ruleName: string; ruleArn: Output; constructor(resourceName: string, args: LambdaCronTriggerArgs, opts?: ComponentResourceOptions); }