import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * Resource Type definition for AWS::Lambda::MicrovmImage
 */
export declare function getMicrovmImage(args: GetMicrovmImageArgs, opts?: pulumi.InvokeOptions): Promise<GetMicrovmImageResult>;
export interface GetMicrovmImageArgs {
    /**
     * ARN of the MicroVM image.
     */
    imageArn: string;
}
export interface GetMicrovmImageResult {
    /**
     * Timestamp when the MicroVM image was created.
     */
    readonly createdAt?: string;
    /**
     * ARN of the MicroVM image.
     */
    readonly imageArn?: string;
    /**
     * The latest active version of the MicroVM image.
     */
    readonly latestActiveImageVersion?: string;
    /**
     * The latest failed version of the MicroVM image.
     */
    readonly latestFailedImageVersion?: string;
    /**
     * Current state of the MicroVM image.
     */
    readonly state?: enums.lambda.MicrovmImageState;
    /**
     * Key-value pairs to associate with the MicroVM image for organization and management.
     */
    readonly tags?: outputs.Tag[];
    /**
     * Timestamp when the MicroVM image was updated.
     */
    readonly updatedAt?: string;
}
/**
 * Resource Type definition for AWS::Lambda::MicrovmImage
 */
export declare function getMicrovmImageOutput(args: GetMicrovmImageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMicrovmImageResult>;
export interface GetMicrovmImageOutputArgs {
    /**
     * ARN of the MicroVM image.
     */
    imageArn: pulumi.Input<string>;
}
