type Info = { id: number; tts_args: object; backgroundInfo?: BackgroundArgs; }; type BackgroundArgs = { rgb: string; id: number; } | string; declare class Project { id?: number; token: string | undefined; info?: Info; setToken(token: string): void; getProject(): Promise; static create(token: string): Promise; } export { Project }; export type { BackgroundArgs };