import { StorageInterface } from "./auth/storage"; import { ResourceId } from "./common/structures"; export declare type Version = 1; export declare class Settings { version: Version; team: ResourceId | undefined; extraHeaders: { [key: string]: string; }; cache: { use: boolean; refresh: number; }; auth: { tokenUrl: string; refreshUrl: string; }; storage: StorageInterface; url: string; autoRefreshToken: boolean; } declare var _default: Settings; export default _default;