/** * Name: utils * Created by chris on 4/30/2017. * Description: */ import { AxiosResponse } from 'axios'; export declare function createChallengeString(): string; export declare function createChallengeResponseString(upTime: string, password: string): string; export declare function createCommandString(command: string): string; export declare function getUpTimeFromChallengeResponse(str: string): string; export declare function parseCommandResponse(str: string): string; export declare function parseAuthResponse(data: string): string; export declare function isIllegalCommand(res: AxiosResponse): boolean; export declare const camelCase: (input: string, options?: any) => any;