import { BikeTagClient } from '../client';
import { getTagPayload } from '../common/payloads';
import { Tag } from '../common/schema';
import { BikeTagApiResponse } from '../common/types';
import { default as TinyCache } from 'tinycache';
export declare function getTag(client: BikeTagClient, payload: getTagPayload, cache?: typeof TinyCache): Promise<BikeTagApiResponse<Tag>>;
