interface IResult {
    verify: boolean;
    ops: IArgs;
}
interface IError {
    err: {};
}
interface Callback {
    (error: IError, result: IResult): void;
}
export declare class TCID {
    WSDL_URI: string;
    verif(args: IArgs, callback?: Callback): {};
}
export interface IArgs {
    TCKimlikNo: number;
    Ad: string;
    Soyad: string;
    DogumYili: number;
}
export {};
