import { BoardMyPrefsRecord, EmailPosition, TypedFetch } from "../typeDefs"; import { BaseResource } from "./BaseResource"; export declare class BoardMyPrefs extends BaseResource { getMyPrefs(): TypedFetch; updateEmailPosition(value: EmailPosition): TypedFetch; moveToEmailList(value: string): TypedFetch; updateShowListGuide(value: boolean): TypedFetch; updateShowSidebar(value: boolean): TypedFetch; updateShowSidebarActivity(value: boolean): TypedFetch; updateShowSidebarBoardActions(value: boolean): TypedFetch; updateShowSidebarMembers(value: boolean): TypedFetch; }