import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource";
import { Value, List } from "../../data-types";
export declare class StreamEncryption {
    EncryptionType: Value<string>;
    KeyId: Value<string>;
    constructor(properties: StreamEncryption);
}
export interface StreamProperties {
    Name?: Value<string>;
    RetentionPeriodHours?: Value<number>;
    ShardCount: Value<number>;
    StreamEncryption?: StreamEncryption;
    Tags?: List<Inner_ResourceTag>;
}
export default class Inner_Stream extends ResourceBase<StreamProperties> {
    static StreamEncryption: typeof StreamEncryption;
    constructor(properties: StreamProperties);
}
