interface FloatingWidgetSettings { side?: 'BOTTOM_RIGHT' | 'BOTTOM_LEFT' | 'TOP_RIGHT' | 'TOP_LEFT'; user?: string; extraData?: Record; } declare function loadSurvey(surveyId: string, additionalSettings?: FloatingWidgetSettings, targetContainer?: HTMLElement): HTMLElement | null; declare function showWidget(surveyId: string, additionalSettings?: FloatingWidgetSettings, retryCounter?: number): void; declare function closeWidget(surveyId: string): void; declare function bindSurveysWithDataAttributes(): void; export { bindSurveysWithDataAttributes, closeWidget, loadSurvey, showWidget };