import { StateRepository as BaseService, StateOptions as BaseOptions, ContextAwareStateOptions as BaseContextAwareStateOptions } from '../../../lime-web-components/src'; /** * @deprecated use {@link StateRepository} from `@limetech/lime-web-components` instead */ export interface StateService extends BaseService { } /** * @deprecated use {@link BaseOptions StateOptions} from `@limetech/lime-web-components` instead */ export interface StateOptions extends BaseOptions { } /** * @deprecated use {@link BaseContextAwareStateOptions ContextAwareStateOptions} from `@limetech/lime-web-components` instead */ export interface ContextAwareStateOptions extends BaseContextAwareStateOptions { } export * from './state/config-service.interface'; export * from './state/device-state-service.interface'; export * from './state/limeobjects-service.interface'; export * from './state/user-data-service.interface'; export * from './state/filter-service.interface';