/** * 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 { SheetAccess } from "./SheetAccess"; import { Property } from "../../property/types/Property"; import { Action } from "../../commons/types/Action"; import { SheetConstraint } from "./SheetConstraint"; import { SheetTreatments } from "./SheetTreatments"; export declare const SheetConfig: core.serialization.ObjectSchema; export declare namespace SheetConfig { interface Raw { name: string; description?: string | null; slug?: string | null; readonly?: boolean | null; allowAdditionalFields?: boolean | null; mappingConfidenceThreshold?: number | null; access?: SheetAccess.Raw[] | null; fields: Property.Raw[]; actions?: Action.Raw[] | null; metadata?: any | null; constraints?: SheetConstraint.Raw[] | null; treatments?: SheetTreatments.Raw[] | null; collection?: string | null; } }