import { ICity, IState } from "../interfaces"; import { IOptions } from "../../../interfaces"; export declare const createState: (values: IState, options_action?: IOptions) => (dispatch: any) => Promise; export declare const deleteState: (id: number, options_action?: IOptions) => (dispatch: any) => Promise; export declare const fetchStates: (options_action?: IOptions) => (dispatch: any) => Promise; export declare const fetchState: (id: number, options_action?: IOptions) => (dispatch: any) => Promise; export declare const createMultipleCitiesState: (id: number, cities: ICity[], options_action?: IOptions) => (dispatch: any) => Promise; export declare const clearStates: (options_action?: IOptions) => (dispatch: any) => void; export declare const updateState: (id: number, values: IState, options_action?: IOptions) => (dispatch: any) => Promise;