import { IGetWord } from '../types';
export declare class TDKAPI {
    constructor();
    getWord(word: string): Promise<IGetWord>;
    isExistWord(word: string): Promise<boolean>;
    getProVerbs(value: string): Promise<any>;
}
