import 'rollup-plugin-inject-process-env'; import { FormWidgetEnv, FormWidgetTheme } from "@xapp/stentor-form-widget-channel"; import { FormWidgetConfig } from "../config"; /** * Parses the widget environment to extract the configuration and theme. * * @param env * @returns An array containing the configuration and theme, config in index 0 and theme in index 1. */ export declare function parseWidgetEnv(env: FormWidgetEnv): [FormWidgetConfig, FormWidgetTheme];