import { ICommandHandler } from '@nestjs/cqrs';
import { GoveeAccountService } from '../../../data';
import { RefreshAuthenticationCommand } from '../commands';
import { AuthService } from '../auth.service';
export declare class RefreshAuthenticationCommandHandler implements ICommandHandler<RefreshAuthenticationCommand> {
    private readonly goveeApi;
    private readonly authService;
    constructor(goveeApi: GoveeAccountService, authService: AuthService);
    execute(command: RefreshAuthenticationCommand): Promise<any>;
}
//# sourceMappingURL=refresh-authentication.handler.d.ts.map