import type { Locale } from './locale';
export interface PluginOptions {
    apiBaseUrl: string;
    locale?: Locale | 'en';
}
export interface AuthService {
    hasToken: boolean;
    getToken: () => string | null;
    setToken: (token: string) => void;
    removeToken: () => void;
}
