export interface EsriWorkflowModelsRestAutomationDetails {
    automationId: string;
    automationName: string;
    automationType: EsriWorkflowModelsRestAutomationDetailsAutomationTypeEnum;
    createdBy?: string | null;
    enabled: boolean;
    details: string;
}
export declare enum EsriWorkflowModelsRestAutomationDetailsAutomationTypeEnum {
    Scheduled = "Scheduled",
    Webhook = "Webhook"
}
export declare function EsriWorkflowModelsRestAutomationDetailsFromJSON(json: any): EsriWorkflowModelsRestAutomationDetails;
export declare function EsriWorkflowModelsRestAutomationDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EsriWorkflowModelsRestAutomationDetails;
export declare function EsriWorkflowModelsRestAutomationDetailsToJSON(value?: EsriWorkflowModelsRestAutomationDetails | null): any;
