/**
 * Used internally to describe the type of data being queried or updated, such as feature flags or
 * user segments.
 */
export interface DataKind {
    /**
     * A string such as `"features"` or `"segments"` which can be used in keys to distinguish this
     * kind of data from other kinds.
     */
    namespace: string;
}
//# sourceMappingURL=DataKind.d.ts.map