/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as Flatfile from "../../../../api/index"; import * as core from "../../../../core"; import { SheetId } from "../../commons/types/SheetId"; import { WorkbookId } from "../../commons/types/WorkbookId"; import { SheetConfig } from "./SheetConfig"; import { RecordCounts } from "../../records/types/RecordCounts"; import { SheetTreatments } from "./SheetTreatments"; export declare const Sheet: core.serialization.ObjectSchema; export declare namespace Sheet { interface Raw { id: SheetId.Raw; workbookId: WorkbookId.Raw; name: string; slug: string; config: SheetConfig.Raw; metadata?: any | null; namespace?: string | null; lockedBy?: string | null; updatedAt: string; createdAt: string; lockedAt?: string | null; recordCounts?: RecordCounts.Raw | null; createdFrom?: SheetId.Raw | null; lastPropagatedAt?: string | null; treatments?: SheetTreatments.Raw[] | null; collection?: string | null; } }