export default class WixMock { private siteColors; private siteTextPresets; private styleParams; private viewMode; private readonly callbackQ; Styles: { getSiteColors: (cb: any) => void; getSiteTextPresets: (cb: any) => void; getStyleParams: (cb: any) => void; }; Utils: { getViewMode: () => string; }; Events: { STYLE_PARAMS_CHANGE: string; }; given: { siteColors: (siteColors: any) => void; siteTextPresets: (siteTextPresets: any) => void; styleParams: (styleParams: any) => void; viewMode: (mode: string) => WixMock; siteColor: (ref: string, value: string) => WixMock; withoutStyles: () => WixMock; }; when: { updateStyleParams: () => any; }; addEventListener(eventName: any, cb: any): void; }