import { Base, Pagination } from '../base';
import { Tag } from './types';
export declare class Tags extends Base {
    getTags(params?: Pagination): Promise<Tag[]>;
}
