/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as Flatfile from "../../../../api/index"; import * as core from "../../../../core"; import { ActionMode } from "./ActionMode"; import { ActionMessage } from "./ActionMessage"; import { ActionSchedule } from "./ActionSchedule"; import { InputForm } from "./InputForm"; import { ActionConstraint } from "./ActionConstraint"; import { ActionMount } from "./ActionMount"; import { Guide } from "./Guide"; import { Guardrail } from "./Guardrail"; import { ActionId } from "./ActionId"; export declare const ActionWithoutLabel: core.serialization.ObjectSchema; export declare namespace ActionWithoutLabel { interface Raw { slug?: string | null; operation?: string | null; mode?: ActionMode.Raw | null; tooltip?: string | null; messages?: ActionMessage.Raw[] | null; type?: string | null; description?: string | null; schedule?: ActionSchedule.Raw | null; primary?: boolean | null; confirm?: boolean | null; icon?: string | null; requireAllValid?: boolean | null; requireSelection?: boolean | null; inputForm?: InputForm.Raw | null; constraints?: ActionConstraint.Raw[] | null; mount?: ActionMount.Raw | null; guide?: Guide.Raw | null; guardrail?: Guardrail.Raw | null; createdFrom?: ActionId.Raw | null; lastPropagatedAt?: string | null; deletedAt?: string | null; } }