/** * This file was auto-generated by Fern from our API Definition. */ /** * pet status in the store */ export declare type PetStatus = "available" | "pending" | "sold"; export declare const PetStatus: { readonly Available: "available"; readonly Pending: "pending"; readonly Sold: "sold"; };