/// import { type IntegrationItem } from "./integrationData"; interface Props { open: boolean; onOpenChange: (open: boolean) => void; catalogId: string; onSelectItem: (item: IntegrationItem) => void; } export declare function IntegrationDialog(props: Props): JSX.Element; export {};