/** * * `RESUME` - RESUME * * `COVER_LETTER` - COVER_LETTER * * `OFFER_LETTER` - OFFER_LETTER * * `OTHER` - OTHER */ export declare const AttachmentTypeEnum: { readonly Resume: "RESUME"; readonly CoverLetter: "COVER_LETTER"; readonly OfferLetter: "OFFER_LETTER"; readonly Other: "OTHER"; }; export type AttachmentTypeEnum = (typeof AttachmentTypeEnum)[keyof typeof AttachmentTypeEnum];