/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as Chariot from "../../api/index"; import * as core from "../../core"; import { GrantFeeDetail } from "./GrantFeeDetail"; import { GrantStatus } from "./GrantStatus"; import { GrantPaymentChannel } from "./GrantPaymentChannel"; import { GrantAddress } from "./GrantAddress"; export declare const Grant: core.serialization.ObjectSchema; export declare namespace Grant { interface Raw { id: string; userFriendlyId?: string | null; trackingId?: string | null; workflowSessionId: string; fundId: string; externalGrantId?: string | null; createdAt?: string | null; updatedAt?: string | null; amount: number; status?: string | null; feeDetail?: GrantFeeDetail.Raw | null; metadata?: Record | null; firstName?: string | null; lastName?: string | null; phone?: string | null; email?: string | null; note?: string | null; statuses?: GrantStatus.Raw[] | null; paymentChannel?: GrantPaymentChannel.Raw | null; address?: GrantAddress.Raw | null; } }