import { ICredentials } from '../Utils'; export declare class Credentials implements ICredentials { secretKey: string; websiteKey: string; constructor(secretKey: string, websiteKey: string); confirm(): Promise; }