import { Command as $Command } from "@smithy/core/client"; import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer, } from "@smithy/types"; import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DataZoneClient"; import { PostLineageEventInput, PostLineageEventOutput, } from "../models/models_2"; export { __MetadataBearer }; export { $Command }; export type PostLineageEventCommandInputType = Pick< PostLineageEventInput, Exclude > & { event: BlobPayloadInputTypes; }; export interface PostLineageEventCommandInput extends PostLineageEventCommandInputType {} export interface PostLineageEventCommandOutput extends PostLineageEventOutput, __MetadataBearer {} declare const PostLineageEventCommand_base: { new ( input: PostLineageEventCommandInput ): import("@smithy/core/client").CommandImpl< PostLineageEventCommandInput, PostLineageEventCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; new ( input: PostLineageEventCommandInput ): import("@smithy/core/client").CommandImpl< PostLineageEventCommandInput, PostLineageEventCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes >; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; export declare class PostLineageEventCommand extends PostLineageEventCommand_base { protected static __types: { api: { input: PostLineageEventInput; output: PostLineageEventOutput; }; sdk: { input: PostLineageEventCommandInput; output: PostLineageEventCommandOutput; }; }; }