import { ActionDef } from "oak-domain/lib/types/Action"; import { GenericAction, RelationAction } from "oak-domain/lib/actions/action"; export type IdAction = 'verify' | 'accept' | 'reject' | string; export type IdState = 'unverified' | 'verified' | 'verifying' | string; export declare const IdActionDef: ActionDef; export type UserAction = 'activate' | 'disable' | 'enable' | 'mergeTo' | 'mergeFrom' | string; export type UserState = 'shadow' | 'normal' | 'disabled' | 'merged' | string; export declare const UserActionDef: ActionDef; export type ParticularAction = UserAction | IdAction; export declare const actions: string[]; export type Action = GenericAction | ParticularAction | RelationAction | string; export declare const actionDefDict: { idState: ActionDef; userState: ActionDef; };