import { App, AppConfig } from './consts'; export declare const listApps: () => Promise[]; }>; export declare const listLinkedApps: () => Promise[]; }>; export declare const getOAuthLink: ({ provider }: { provider: string; }) => Promise; export declare const processOAuthCode: ({ provider, ...params }: { provider: string; state: string; code: string; }) => Promise; export declare const appDetails: ({ name }: { name: string; }) => Promise; export declare const createConfig: ({ app, ...params }: { app: string; type: string; name: string; }) => Promise; export declare const configList: () => Promise; export declare const configDetails: ({ app, type, name, }: { app: string; type: string; name: string; }) => Promise & { origin_url: string; }; config: AppConfig | null; updated: Date; created: Date; }; }>; export declare const deleteConfig: ({ app, type, name, }: { app: string; type: string; name: string; }) => Promise; export declare const deleteApp: ({ app }: { app: string; }) => Promise;