import { IOptions } from "../../../interfaces"; import { ICity, ICountry, IState } from "../interfaces"; export declare const getTokenCoutriesREST: (options_action?: IOptions) => (dispatch: any) => Promise; export declare const fetchCoutriesREST: (token: string, options_action?: IOptions) => (dispatch: any) => Promise; export declare const createCountry: (values: ICountry, options_action?: IOptions) => (dispatch: any) => Promise; export declare const createMultipleStatesCountry: (id: number, states: IState[], options_action?: IOptions) => (dispatch: any) => Promise; export declare const createMultipleCountries: (countries: ICountry[], options_action?: IOptions) => (dispatch: any) => Promise; export declare const createMultipleStates: (states: IState[], options_action?: IOptions) => (dispatch: any) => Promise; export declare const createMultipleCities: (cities: ICity[], options_action?: IOptions) => (dispatch: any) => Promise; export declare const deleteCountry: (id: number, options_action?: IOptions) => (dispatch: any) => Promise; export declare const fetchCountries: (options_action?: IOptions) => (dispatch: any) => Promise; export declare const fetchCountry: (id: number, options_action?: IOptions) => (dispatch: any) => Promise; export declare const clearCountries: (options_action?: IOptions) => (dispatch: any) => void; export declare const updateCountry: (id: number, values: ICountry, options_action?: IOptions) => (dispatch: any) => Promise;