import React from "react"; interface IframeVibesComponentProps { code: string; sessionId?: string; baseUrl?: string; onReady?: () => void; onError?: (error: Error) => void; authToken?: string; } declare const IframeVibesComponent: React.FC; export default IframeVibesComponent;