import { FeatureServiceAdminJSON, IItem, ValidationInfo } from '../../types'; type CheckFeatureServiceExportSettingOptions = { /** * The admin JSON of the Feature Service, which contains the capabilities property used to determine if export is enabled. * This is required to perform the validation, but may not be available when validating items that are not owned by the user. */ featureServiceAdminJSON: FeatureServiceAdminJSON; /** * A boolean indicating whether advisories should be checked and included in the validation result. */ shouldCheckAdvisories?: boolean; }; /** * * @param item ArcGIS Online item to validate * @param options.featureServiceAdminJSON The admin JSON of the Feature Service, which contains the capabilities property used to determine if export is enabled. This is required to perform the validation, but may not be available when validating items that are not owned by the user. * @param options.shouldCheckAdvisories A boolean indicating whether advisories should be checked and included in the validation result. * @returns ValidationInfo object containing the validation result */ export declare const checkFeatureServiceExportSetting: (item: IItem, { featureServiceAdminJSON, shouldCheckAdvisories, }: CheckFeatureServiceExportSettingOptions) => ValidationInfo; export {};