/**
 * Fyers Service Adapter
 * Adapts the existing FyersService to implement IBrokerService interface
 */
import { IBrokerService, BrokerCredentials, LoginResponse, OrderRequest, OrderResponse, OrderStatus, Position, Quote } from '../../interfaces/IBrokerService';
import { FyersService } from '../../services/fyersService';
export declare class FyersServiceAdapter extends IBrokerService {
    private fyersService;
    constructor();
    login(credentials: BrokerCredentials): Promise<LoginResponse>;
    logout(): Promise<boolean>;
    validateSession(accountId?: string): Promise<boolean>;
    placeOrder(orderRequest: OrderRequest): Promise<OrderResponse>;
    getOrderStatus(accountId: string, orderId: string): Promise<OrderStatus>;
    getOrderHistory(accountId: string): Promise<OrderStatus[]>;
    getPositions(accountId: string): Promise<Position[]>;
    getQuote(symbol: string, exchange: string): Promise<Quote>;
    searchSymbols(query: string, exchange: string): Promise<any[]>;
    getFyersService(): FyersService;
    refreshToken(): Promise<boolean>;
    completeAuth(authCode: string): Promise<LoginResponse>;
}
//# sourceMappingURL=FyersServiceAdapter.d.ts.map