interface ScannerSliceState { isEnabled: boolean; scanKey: string | null; scannedValue: string | null; } export declare const enableScan: import("@reduxjs/toolkit").ActionCreatorWithPayload, scanValue: import("@reduxjs/toolkit").ActionCreatorWithPayload, disableScan: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"scanner/disableScan">, clearScan: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"scanner/clearScan">; export declare const useScannerSelector: () => ScannerSliceState; export declare const useScannedValueByKey: (key: string) => string | null; declare const _default: import("redux").Reducer<{ isEnabled: boolean; scanKey: any; scannedValue: any; }>; export default _default;