import type { ResourceBase } from "./Common";
export declare type DataStreamType = 'resource.data-stream';
export interface DataStream extends ResourceBase {
    type: DataStreamType;
    shards: number;
    retentionPeriod: number;
}
export declare const isDataStream: import("@altostra/type-validations").ObjectOfTypeValidation<DataStream>;
