import { StateProps } from './initial'; declare const actions: () => { readonly state: StateProps; dispatch(payload: unknown): void; getNpmPackageVersion(): Promise; }; export interface ActionProps { state: StateProps; getNpmPackageVersion: object; } export default actions;