declare global {
    interface Window {
        OutsellaWidget?: {
            open: (options: {
                agentId: string;
                position?: string;
            }) => void;
        };
    }
}
export {};
