import React from 'react'; interface VantaAgentProps { agentId: string; type?: 'floating' | 'embedded' | 'fullpage'; position?: 'bottom-right' | 'bottom-left' | 'top-right' | 'top-left'; defaultOpen?: boolean; apiKey?: string; apiBaseUrl?: string; triggerIcon?: React.ReactNode | string; theme?: { primaryColor?: string; backgroundColor?: string; textColor?: string; }; } declare const VantaAgent: React.FC; export { VantaAgent, type VantaAgentProps };