import { AuthService } from '../auth/auth.service'; import { AWeberListQuery, AWeberFindListQuery } from './lists.dto'; import { AWeberList, AWeberListTags } from './lists.types'; export declare class ListsService { private readonly authService; constructor(authService: AuthService); getLists(accountId: number, params?: AWeberListQuery): Promise; getList(accountId: number, listId: number): Promise; findLists(accountId: number, params: AWeberFindListQuery): Promise; getListTags(accountId: number, listId: number): Promise; }