/** * 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 { GrantAddress } from "./GrantAddress"; export declare const RecurringGrant: core.serialization.ObjectSchema; export declare namespace RecurringGrant { interface Raw { id: string; trackingId?: string | null; workflowSessionId: string; fundId: string; frequency: "MONTHLY"; externalGrantId?: string | null; createdAt?: string | null; updatedAt?: string | null; amount: number; firstName?: string | null; lastName?: string | null; phone?: string | null; email?: string | null; note?: string | null; address?: GrantAddress.Raw | null; } }