import type { AllConfig } from '../../config/types';
import type { PlatformId } from '../../constants';
import type { Platform } from './types';
export type * from './types';
export declare const getPlatformList: () => string[];
export declare const platform: Platform;
export declare function setPlatformApi(name: PlatformId): void;
export declare function initPlatform(config: AllConfig): Promise<AllConfig>;
