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