import * as z from "zod"; export type CreateRequestBody8 = { /** * Describes the purpose of the role */ description: string; /** * Provided to whoever is nominated for the role. Note that this will be empty for the 'reporter' role. */ instructions: string; /** * Human readable name of the incident role */ name: string; /** * Short human readable name for Slack. Note that this will be empty for the 'reporter' role. */ shortform: string; }; /** @internal */ export declare const CreateRequestBody8$inboundSchema: z.ZodType; /** @internal */ export type CreateRequestBody8$Outbound = { description: string; instructions: string; name: string; shortform: string; }; /** @internal */ export declare const CreateRequestBody8$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CreateRequestBody8$ { /** @deprecated use `CreateRequestBody8$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody8$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CreateRequestBody8$Outbound` instead. */ type Outbound = CreateRequestBody8$Outbound; } //# sourceMappingURL=createrequestbody8.d.ts.map