import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage */ export declare function getHeartbeat(args?: GetHeartbeatArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHeartbeat. */ export interface GetHeartbeatArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: { [key: string]: string; }; name?: string; } /** * A collection of values returned by getHeartbeat. */ export interface GetHeartbeatResult { /** * Filter by date range using 'lt' and 'gt'. */ readonly createdAt?: { [key: string]: string; }; /** * The ID of this resource. */ readonly id: string; readonly name: string; } /** * ## Example Usage */ export declare function getHeartbeatOutput(args?: GetHeartbeatOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHeartbeat. */ export interface GetHeartbeatOutputArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; name?: pulumi.Input; } //# sourceMappingURL=getHeartbeat.d.ts.map