import { DropdownLayoutValueOption } from '@wix/design-system'; export declare const DisplayNames: { root: { elementDisplayName: string; actions: { settings: string; }; data: { sourceType: { displayName: string; options: { external: string; nonexternal: string; }; }; url: string; scrolling: { displayName: string; options: { yes: string; no: string; auto: string; }; }; allowFullScreen: string; title: string; componentConsentPolicy: { displayName: string; options: { essential: string; functional: string; analytics: string; advertising: string; dataToThirdParty: string; }; }; }; }; panel: { sourceTypeSelector: string; titleField: { label: string; externalPlaceholder: string; codePlaceholder: string; infoContent: string; error: string; }; cookieConsentField: { label: string; infoContent: string; learnAboutCookiesLink: string; }; htmlCodeContent: { label: string; infoContent: string; actionButtonLabel: string; }; externalUrlContent: { infoPlaceholder: string; actionButtonLabel: string; }; }; }; export declare enum SourceTypes { External = "external", HtmlEmbedded = "nonexternal" } export declare enum CookieConsentType { Essential = "essential", Functional = "functional", Analytics = "analytics", Advertising = "advertising", DataToThirdParty = "dataToThirdParty" } export declare const SERVER_URL: any; export declare const STATIC_SERVER_URL: any; export declare const SAVE_HTML_TEXT_URL: string; export declare const GET_HTML_TEXT_URL: string; export declare const dataHooks: { loader: string; content: string; sourceTypeSelector: string; sourceTypeContent: string; titleField: string; cookieConsentField: string; }; export declare const cookieConsentOptions: { id: CookieConsentType; value: string; }[]; export declare const sourceTypeOptions: Array;