import { Order } from '@open-tender/types';
import { AppState } from '../app';
export interface ConfirmationState {
    order: Order | null;
}
export declare const resetConfirmation: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"confirmation/resetConfirmation">, setConfirmationOrder: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, "confirmation/setConfirmationOrder">;
export declare const selectConfirmationOrder: (state: AppState) => Order | null;
export declare const confirmationReducer: import("redux").Reducer<ConfirmationState, import("redux").AnyAction>;
