import { ServiceType } from '@open-tender/types'; import { AppState } from '../app'; export interface QrState { locationId: number | null; prep_type: string | null; table: number | null; service_type: ServiceType | null; } export declare const setQrParams: import("@reduxjs/toolkit").ActionCreatorWithPayload, resetQrParams: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"qr/resetQrParams">; export declare const selectQrParams: (state: AppState) => QrState; export declare const qrReducer: import("redux").Reducer;