If you can, make the member public. If it is being accessed outside of the class this is the most honest way to write your code.
public callme: string;
In TypeScript, members are public
by default, so you can just leave out the access modifier to the same effect.
If you have some reason to have a private member that is used by some external framework, you will need another solution. If the compiler can't see that a member is used, but you know there is some external use of it that the compiler couldn't possibly know about; you can take charge.
Here is one way you can do this:
// @ts-ignore: ignore not used error
private callme: string;
On the whole, you probably ought to avoid error suppression comments, but you may have found a case where it is necessary (it depends on what you are trying to achieve - my guessed concept is "I don't want my production code to access this member, but I am using a framework that works by convention to access it").
In the future, having a private member that is accessed non-privately may well break (if private access was ever enforced).