import { StreamKindEnum } from './StreamKindEnum';
/** Create a stream of data */
export interface StreamCreation {
    /** Description of the stream */
    description: string;
    /** Kind of the stream */
    kind: StreamKindEnum;
    /** Name of the stream */
    name: string;
    /** Region where the stream will be available */
    region: string;
}
//# sourceMappingURL=StreamCreation.d.ts.map