import { StateContract } from '../../state/contracts/state.contract'; import { Subject } from 'rxjs'; import { ActionResponse } from '../interfaces/action-response'; export declare const defaultActionName: (target: StateContract, property: string) => string; export declare const getActions: () => Subject> | undefined; export declare const dispatchAction: (target: StateContract, property: string, name?: string | undefined) => void;