import type { SchemaList } from "..//CommonInterfaces";
/** Properties info search results */
export interface PropertiesSearchResults {
    schemas: SchemaList[];
}
/** Properties info data object */
export interface PropertiesData {
    searchProperty: PropertiesSearchResults;
}
/** Get Schema Info API response. */
export interface ResponseFromGetPropertiesInfo {
    /** The status of the properties info extraction. One of 'available', 'unavailable'. */
    status: string;
    data: PropertiesData;
}
//# sourceMappingURL=PropertiesInfoInterfaces.d.ts.map