import { CmsPublishMode } from '@hubspot/local-dev-lib/types/Files'; export declare function setAllowUsageTracking({ accountId, allowUsageTracking, }: { accountId: number; allowUsageTracking?: boolean; }): Promise; export declare function setAllowAutoUpdates({ accountId, allowAutoUpdates, }: { accountId: number; allowAutoUpdates?: boolean; }): Promise; export declare function setDefaultCmsPublishMode({ accountId, defaultCmsPublishMode, }: { accountId: number; defaultCmsPublishMode?: CmsPublishMode; }): Promise; export declare function setHttpTimeout({ accountId, httpTimeout, }: { accountId: number; httpTimeout?: string; }): Promise; export declare function setAutoOpenBrowser({ accountId, autoOpenBrowser, }: { accountId: number; autoOpenBrowser: boolean; }): Promise;