import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export declare class StreamingImageEncryptionConfiguration { KeyType: Value; KeyArn?: Value; constructor(properties: StreamingImageEncryptionConfiguration); } export interface StreamingImageProperties { Description?: Value; Ec2ImageId: Value; StudioId: Value; Tags?: { [key: string]: Value; }; Name: Value; } export default class StreamingImage extends ResourceBase { static StreamingImageEncryptionConfiguration: typeof StreamingImageEncryptionConfiguration; constructor(properties: StreamingImageProperties); }