import { StoreRegistry } from '@sapphire/pieces'; import type { ClientOptions } from 'fuwa'; import * as Fuwa from 'fuwa'; export declare class SakuraClient extends Fuwa.Client { /** * The store registry * * @since 1.0.0 */ stores: StoreRegistry; /** * Prefix * * @since 1.0.0 */ prefix: string; constructor(token: string, options: ClientOptions); login(): Promise; }