import axios from 'axios'; export type LocalDevConfig = { /** local user id, stored in file under home folder ~/.config/stackbit-dev/config.json */ i: string; /** local dev version */ v: string; /** local port */ p: number; /** cms id */ cms?: string; /** ssg id */ ssg?: string; /** ngrok hostname */ h?: string; spaceIds?: [string]; projectId?: string; contentfulAccessToken?: string; contentfulSpaces?: any; csi?: boolean; cloudinary?: { cloudName: string; apiKey: string; }; aprimo?: { tenant: string; }; }; declare const _default: { updateLocalDev: (userId: string, localDevConfig: LocalDevConfig) => Promise>; getConfiguration: (token: string, projectId: string) => Promise>; }; export default _default; //# sourceMappingURL=api.d.ts.map