/** * Other Enrollment option containing a text message directing users to some other method (such as a phone call) * @see "Section 8.8 OFX Spec" */ export declare class OtherEnrollment { private message; /** * Message to consumer about what to do next (for example, a phone number), * @return String */ getMessage(): string; setMessage(message: string): void; }