type RiskValueResponse = {
    latest_risk_value: string;
};
export declare class AlphaSquared {
    private _apiKey;
    constructor(apiKey: string);
    get(type?: "BTC" | "ETH"): Promise<RiskValueResponse["latest_risk_value"]>;
}
export {};
