import { ThemeType } from '../../styles';
import { InteractiveUIState } from '../../types/rpc';
interface InteractiveComponentProps {
    interaction: InteractiveUIState | null;
    theme: ThemeType;
    onDismiss?: () => void;
    client?: any;
    addLocalMessage?: (content: string) => void;
}
export declare function InteractiveComponent({ interaction, theme, onDismiss, client, addLocalMessage }: InteractiveComponentProps): import("react/jsx-runtime").JSX.Element | null;
export {};
