import { LocationQuestionModel } from "./LocationQuestionModel"; /** * Tells you whether this location object has been correctly set up to the local jurisdiction's standards * @export * @class LocationValidationModel */ export declare class LocationValidationModel { /** * @type {boolean} * @memberof LocationValidationModel */ settingsValidated?: boolean | undefined; /** * @type {LocationQuestionModel[]} * @memberof LocationValidationModel */ requiredSettings?: LocationQuestionModel[] | undefined; }