export interface EsriWorkflowModelsRestFeatureServiceProperties {
    itemId: string;
    itemType?: EsriWorkflowModelsRestFeatureServicePropertiesItemTypeEnum;
    layerId: string;
    portalType?: EsriWorkflowModelsRestFeatureServicePropertiesPortalTypeEnum;
    portalUrl?: string | null;
    featureServiceUniqueId: string;
    secure?: boolean | null;
}
export declare enum EsriWorkflowModelsRestFeatureServicePropertiesItemTypeEnum {
    SurveyForm = "SurveyForm"
}
export declare enum EsriWorkflowModelsRestFeatureServicePropertiesPortalTypeEnum {
    Current = "Current",
    ArcGisOnline = "ArcGISOnline",
    Other = "Other"
}
export declare function EsriWorkflowModelsRestFeatureServicePropertiesFromJSON(json: any): EsriWorkflowModelsRestFeatureServiceProperties;
export declare function EsriWorkflowModelsRestFeatureServicePropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): EsriWorkflowModelsRestFeatureServiceProperties;
export declare function EsriWorkflowModelsRestFeatureServicePropertiesToJSON(value?: EsriWorkflowModelsRestFeatureServiceProperties | null): any;
