import type { AppState } from '../../config'; type InitFloatingChatLayoutArgs = { containerId: string; iframeOrigin: string; toggleButtonSelector: string; injectToggleButton: boolean; onClose?: () => void; instance: AppState; }; export declare const initFloatingChatLayout: (args: InitFloatingChatLayoutArgs) => void; export {};