import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
import type { DescribeStreamProcessorRequest, DescribeStreamProcessorResponse } from "../models/models_0";
/**
 * @public
 */
export type { __MetadataBearer };
/**
 * @public
 *
 * The input for {@link DescribeStreamProcessorCommand}.
 */
export interface DescribeStreamProcessorCommandInput extends DescribeStreamProcessorRequest {
}
/**
 * @public
 *
 * The output of {@link DescribeStreamProcessorCommand}.
 */
export interface DescribeStreamProcessorCommandOutput extends DescribeStreamProcessorResponse, __MetadataBearer {
}
declare const DescribeStreamProcessorCommand_base: {
    new (input: DescribeStreamProcessorCommandInput): import("@smithy/core/client").CommandImpl<DescribeStreamProcessorCommandInput, DescribeStreamProcessorCommandOutput, import("..").RekognitionClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
    new (input: DescribeStreamProcessorCommandInput): import("@smithy/core/client").CommandImpl<DescribeStreamProcessorCommandInput, DescribeStreamProcessorCommandOutput, import("..").RekognitionClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
    getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
};
/**
 * <p>Provides information about a stream processor created by <a>CreateStreamProcessor</a>. You can get information about the input and output streams, the input parameters for the face recognition being performed,
 *             and the current status of the stream processor.</p>
 * @example
 * Use a bare-bones client and the command you need to make an API call.
 * ```javascript
 * import { RekognitionClient, DescribeStreamProcessorCommand } from "@aws-sdk/client-rekognition"; // ES Modules import
 * // const { RekognitionClient, DescribeStreamProcessorCommand } = require("@aws-sdk/client-rekognition"); // CommonJS import
 * // import type { RekognitionClientConfig } from "@aws-sdk/client-rekognition";
 * const config = {}; // type is RekognitionClientConfig
 * const client = new RekognitionClient(config);
 * const input = { // DescribeStreamProcessorRequest
 *   Name: "STRING_VALUE", // required
 * };
 * const command = new DescribeStreamProcessorCommand(input);
 * const response = await client.send(command);
 * // { // DescribeStreamProcessorResponse
 * //   Name: "STRING_VALUE",
 * //   StreamProcessorArn: "STRING_VALUE",
 * //   Status: "STOPPED" || "STARTING" || "RUNNING" || "FAILED" || "STOPPING" || "UPDATING",
 * //   StatusMessage: "STRING_VALUE",
 * //   CreationTimestamp: new Date("TIMESTAMP"),
 * //   LastUpdateTimestamp: new Date("TIMESTAMP"),
 * //   Input: { // StreamProcessorInput
 * //     KinesisVideoStream: { // KinesisVideoStream
 * //       Arn: "STRING_VALUE",
 * //     },
 * //   },
 * //   Output: { // StreamProcessorOutput
 * //     KinesisDataStream: { // KinesisDataStream
 * //       Arn: "STRING_VALUE",
 * //     },
 * //     S3Destination: { // S3Destination
 * //       Bucket: "STRING_VALUE",
 * //       KeyPrefix: "STRING_VALUE",
 * //     },
 * //   },
 * //   RoleArn: "STRING_VALUE",
 * //   Settings: { // StreamProcessorSettings
 * //     FaceSearch: { // FaceSearchSettings
 * //       CollectionId: "STRING_VALUE",
 * //       FaceMatchThreshold: Number("float"),
 * //     },
 * //     ConnectedHome: { // ConnectedHomeSettings
 * //       Labels: [ // ConnectedHomeLabels // required
 * //         "STRING_VALUE",
 * //       ],
 * //       MinConfidence: Number("float"),
 * //     },
 * //   },
 * //   NotificationChannel: { // StreamProcessorNotificationChannel
 * //     SNSTopicArn: "STRING_VALUE", // required
 * //   },
 * //   KmsKeyId: "STRING_VALUE",
 * //   RegionsOfInterest: [ // RegionsOfInterest
 * //     { // RegionOfInterest
 * //       BoundingBox: { // BoundingBox
 * //         Width: Number("float"),
 * //         Height: Number("float"),
 * //         Left: Number("float"),
 * //         Top: Number("float"),
 * //       },
 * //       Polygon: [ // Polygon
 * //         { // Point
 * //           X: Number("float"),
 * //           Y: Number("float"),
 * //         },
 * //       ],
 * //     },
 * //   ],
 * //   DataSharingPreference: { // StreamProcessorDataSharingPreference
 * //     OptIn: true || false, // required
 * //   },
 * // };
 *
 * ```
 *
 * @param DescribeStreamProcessorCommandInput - {@link DescribeStreamProcessorCommandInput}
 * @returns {@link DescribeStreamProcessorCommandOutput}
 * @see {@link DescribeStreamProcessorCommandInput} for command's `input` shape.
 * @see {@link DescribeStreamProcessorCommandOutput} for command's `response` shape.
 * @see {@link RekognitionClientResolvedConfig | config} for RekognitionClient's `config` shape.
 *
 * @throws {@link AccessDeniedException} (client fault)
 *  <p>You are not authorized to perform the action.</p>
 *
 * @throws {@link InternalServerError} (server fault)
 *  <p>Amazon Rekognition experienced a service issue. Try your call again.</p>
 *
 * @throws {@link InvalidParameterException} (client fault)
 *  <p>Input parameter violated a constraint. Validate your parameter before calling the API
 *       operation again.</p>
 *
 * @throws {@link ProvisionedThroughputExceededException} (client fault)
 *  <p>The number of requests exceeded your throughput limit. If you want to increase this
 *       limit, contact Amazon Rekognition.</p>
 *
 * @throws {@link ResourceNotFoundException} (client fault)
 *  <p>The resource specified in the request cannot be found.</p>
 *
 * @throws {@link ThrottlingException} (server fault)
 *  <p>Amazon Rekognition is temporarily unable to process the request. Try your call again.</p>
 *
 * @throws {@link RekognitionServiceException}
 * <p>Base exception class for all service exceptions from Rekognition service.</p>
 *
 *
 * @public
 */
export declare class DescribeStreamProcessorCommand extends DescribeStreamProcessorCommand_base {
    /** @internal type navigation helper, not in runtime. */
    protected static __types: {
        api: {
            input: DescribeStreamProcessorRequest;
            output: DescribeStreamProcessorResponse;
        };
        sdk: {
            input: DescribeStreamProcessorCommandInput;
            output: DescribeStreamProcessorCommandOutput;
        };
    };
}
