import { IItem, ValidationInfo } from '../../types'; /** * Validate an item's SSL. * * The URL for the resource represented by the item. Applies only to items that represent web-accessible resources such as map services. * * ArcGIS Online specific rules: * - Must be SSL * * Living Atlas specific * - Must be hosted over SSL * */ export declare const isValidSSL: (item: IItem) => ValidationInfo;