import { APIBackend } from '../backend';
export type APIType = (string & NonNullable<unknown>) | 'aistudio' | 'qianfan';
export declare function buildBackend(apiType: APIType): APIBackend;
