export declare const SELECT_UNIT = "SELECT_UNIT"; export declare const SELECT_METHOD = "SELECT_METHOD"; export declare const SELECT_CENTER = "SELECT_CENTER"; export declare const SELECT_SEEDZONE = "SELECT_SEEDZONE"; export declare const ADD_VARIABLES = "ADD_VARIABLES"; export declare const REMOVE_VARIABLE = "REMOVE_VARIABLE"; export declare const MODIFY_VARIABLE = "MODIFY_VARIABLE"; export declare const RESET_TRANSFER = "RESET_TRANSFER"; export declare const RECEIVE_VALUE = "RECEIVE_VALUE"; export declare const REQUEST_VALUE = "REQUEST_VALUE"; export declare const RECEIVE_TRANSFER = "RECEIVE_TRANSFER"; export declare const REQUEST_TRANSFER = "REQUEST_TRANSFER"; export declare const SET_VARIABLES_REGION = "SET_VARIABLES_REGION"; export declare const SET_DEFAULT_VARIABLES = "SET_DEFAULT_VARIABLES"; export declare const SET_CUSTOM_MODE = "SET_CUSTOM_MODE"; export declare const selectUnit: (unit: string) => { type: string; unit: string; }; export declare const selectMethod: (method: string) => { type: string; method: string; }; export declare const selectCenter: (center: string) => { type: string; center: string; }; export declare const selectSeedzone: (seedzone: number) => { type: string; seedzone: number; }; export declare const addVariable: (variable: string) => { type: string; variables: string[]; }; export declare const addVariables: (variables: string[]) => { type: string; variables: string[]; }; export declare const removeVariable: (variable: string, index: number) => { type: string; variable: string; index: number; }; export declare const modifyVariable: (variable: string, modifications: { transfer?: number; customCenter?: number; }) => { type: string; variable: string; modifications: { transfer?: number | undefined; customCenter?: number | undefined; }; }; export declare const resetTransfer: (variable: string) => { type: string; variable: string; }; export declare const receiveValue: (variable: string, json: any) => { type: string; value: any; variable: string; }; export declare const requestValue: (variable: string) => { type: string; variable: string; }; export declare const receiveTransfer: (variable: string, transfer: number | null, avgTransfer: number | null, center: number | null) => { type: string; transfer: number | null; avgTransfer: number | null; center: number | null; variable: string; }; export declare const requestTransfer: (variable: string) => { type: string; variable: string; }; export declare const setVariablesRegion: (region: string) => { type: string; region: string; }; export declare const setDefaultVariables: (useDefault: boolean) => { type: string; useDefault: boolean; }; export declare const setCustomMode: (customMode: boolean) => { type: string; customMode: boolean; }; //# sourceMappingURL=variables.d.ts.map