import { ActionType } from './enums';
import { NoCodesError } from './NoCodesError';
export declare class NoCodesAction {
    type: ActionType;
    value: Map<string, string | undefined> | undefined;
    error: NoCodesError | undefined;
    constructor(type: ActionType, value: Map<string, string | undefined> | undefined, error: NoCodesError | undefined);
}
