export declare class AlphaRefreshData {
    private static readonly refreshTokenFieldName;
    refreshToken: string;
    constructor(refreshToken: string);
    static retrieve(): AlphaRefreshData | null;
    static clear(): void;
    store(): void;
}
