export declare class ActionInterface<P = void> {
    type: string;
    payload?: P;
}
