import { ComponentProp } from '../../lib/utils/parsePropsForComponent'; type Props = { integrationKey: string; componentKey: string; componentProps?: ComponentProp[]; }; declare const Component: ({ integrationKey, componentKey }: Props) => import("react/jsx-runtime").JSX.Element; export default Component;