import { DialogProvider } from '../DialogProvider'; /** * This class validates an instance of DialogProvider. 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 DialogProviderValidator { static validate(dialogProvider: DialogProvider): void; }