import { AxiosInstance } from 'axios';
import { iTag } from './interfaces';
declare const api: AxiosInstance;
export declare function getTags(headers: {
    [k: string]: any;
}): Promise<{
    success: boolean;
    data: iTag[];
    userV: number;
    appVersion: string;
}>;
export default api;
