import { AppState } from '../app'; export interface PushNotificationsState { orderId: string | number | null; fcmToken: string | null; } export declare const setPushNotificationsOrderId: import("@reduxjs/toolkit").ActionCreatorWithPayload, setFcmToken: import("@reduxjs/toolkit").ActionCreatorWithPayload; export declare const selectPushNotificationOrderId: (state: AppState) => string | number | null; export declare const selectFcmToken: (state: AppState) => string | null; export declare const pushNotificationsReducer: import("redux").Reducer;