import Agile from "../agile"; export interface Integration { ready?: boolean; frameworkConstructor?: any; name?: any; bind?: (agileInstance: Agile) => void; updateMethod?: (componentInstance: any, updatedData: Object) => void; } export default function use(framework: any, agileInstance: Agile): void;