import { accept } from './accept'; import { create } from './create'; import { decline } from './decline'; import { list } from './list'; import { stats } from './stats'; import { terminate } from './terminate'; type ApiDeclaration = { list: typeof list; stats: typeof stats; create: typeof create; accept: typeof accept; decline: typeof decline; terminate: typeof terminate; }; export declare const coalitionApiDeclaration: ApiDeclaration; export {};