import { IMetaObject } from './meta'; export interface IWebSetupConstructorOptions { googleAnalyticsCode?: string; fsCode?: string; metaObject: IMetaObject; } /** * the main WebSetup class */ export declare class WebSetup { options: IWebSetupConstructorOptions; constructor(optionsArg: IWebSetupConstructorOptions); setup(): Promise; }