import { StudioForm, FormDefinition, GenericDataSchema, FormFeatureFlags } from '../types'; /** * Helper that turns the StudioForm model into definition that can be used to render * UI Components in the customer project and shapes representing UI Components in Studio. * @param form StudioForm, converted from the API shape. * @param modelInfo (Optional) holds type information about the DataStore model fields being represented. * @returns a definition that translates to rendered JSX elements. */ export declare function generateFormDefinition({ form, dataSchema, featureFlags, }: { form: StudioForm; dataSchema?: GenericDataSchema; featureFlags?: FormFeatureFlags; }): FormDefinition; //# sourceMappingURL=generate-form-definition.d.ts.map