import { FlagProvider } from '../FlagProvider'; /** * This class validates an instance of FlagProvider. 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 FlagProviderValidator { static validate(flagProvider: FlagProvider): void; private static validateFlagCreationAndDeletions; private static validateFlagCreationAndDeletion; }