import { IResponse, IContext } from '../../types'; import { IApp, IAppSpec } from '..'; export interface ICreateAppApiResponse { app: IApp; } export interface ICreateAppApiRequest { project_id?: string; spec: Partial; } export type CreateAppResponse = IResponse; export declare const createApp: ({ httpClient, }: IContext) => ({ project_id, spec, }: ICreateAppApiRequest) => Promise>;