import * as cog from '../cog'; import * as preferencesv1alpha1 from '../preferencesv1alpha1'; import * as resource from '../resource'; export declare class PreferencesBuilder implements cog.Builder { protected readonly internal: preferencesv1alpha1.Preferences; constructor(); /** * Builds the object. */ build(): preferencesv1alpha1.Preferences; homeDashboardUID(homeDashboardUID: string): this; timezone(timezone: string): this; weekStart(weekStart: string): this; theme(theme: string): this; language(language: string): this; regionalFormat(regionalFormat: string): this; queryHistory(queryHistory: cog.Builder): this; cookiePreferences(cookiePreferences: cog.Builder): this; navbar(navbar: cog.Builder): this; } /** * Creates a resource manifest from Preferences. */ export declare function manifest(name: string, preferences: cog.Builder): cog.Builder;