import { IApi } from "./IApi";
interface IApiCollection {
    [key: string]: IApi;
}
export { IApiCollection };
