import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::SES::ConfigurationSetEventDestination
 */
export declare function getConfigurationSetEventDestination(args: GetConfigurationSetEventDestinationArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigurationSetEventDestinationResult>;
export interface GetConfigurationSetEventDestinationArgs {
    id: string;
}
export interface GetConfigurationSetEventDestinationResult {
    /**
     * The event destination object.
     */
    readonly eventDestination?: outputs.ses.ConfigurationSetEventDestinationEventDestination;
    readonly id?: string;
}
/**
 * Resource Type definition for AWS::SES::ConfigurationSetEventDestination
 */
export declare function getConfigurationSetEventDestinationOutput(args: GetConfigurationSetEventDestinationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfigurationSetEventDestinationResult>;
export interface GetConfigurationSetEventDestinationOutputArgs {
    id: pulumi.Input<string>;
}
