import { DataKind } from '../api/interfaces';
export interface VersionedDataKind extends DataKind {
    namespace: string;
    streamApiPath: string;
    getDependencyKeys?: (item: any) => string[];
}
export default class VersionedDataKinds {
    static readonly Features: VersionedDataKind;
    static readonly Segments: VersionedDataKind;
    static getKeyFromPath(kind: VersionedDataKind, path: string): string | undefined;
}
//# sourceMappingURL=VersionedDataKinds.d.ts.map