import { MessageProvider } from '../MessageProvider'; /** * This class validates an instance of MessageProvider. This is intended to be used by consumers of this library in * their tests to validate their implementations. Knowing products have incorporated this into their test suite will * allow breaking changes to be introduced in the library. */ export declare class MessageProviderValidator { static validate(messageProvider: MessageProvider): void; }