/** * This file was auto-generated by Fern from our API Definition. */ /** * The status of the unintegrated grant. * To see a description of each status, see the "Unintegrated Grant Statuses" section of the Chariot documentation. */ export declare type UnintegratedGrantStatus = "Unknown" | "Initiated" | "Completed" | "Canceled"; export declare const UnintegratedGrantStatus: { readonly Unknown: "Unknown"; readonly Initiated: "Initiated"; readonly Completed: "Completed"; readonly Canceled: "Canceled"; };