import { AbstractFuseAPIFactory } from './AbstractFuseAPIFactory';
import { FuseAPI } from './FuseAPI';
import { Platform } from './Platform';
/**
 * A FuseAPI factory that uses the HTTP/app scheme as the bridge.
 */
export declare class FuseAPIFactory extends AbstractFuseAPIFactory {
    private $iosScheme;
    private $androidScheme;
    constructor();
    create(platform: Platform): FuseAPI;
    protected _createiOSAPI(): FuseAPI;
    protected _createAndroidAPI(): FuseAPI;
}
