/** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { DrawMetadata } from './DrawMetadata'; /** * * @export * @interface BaseFieldsCreate */ export interface BaseFieldsCreate { /** * * @type {string} * @memberof BaseFieldsCreate */ title?: string; /** * * @type {string} * @memberof BaseFieldsCreate */ description?: string; /** * * @type {Array} * @memberof BaseFieldsCreate */ metadata?: Array; } /** * Check if a given object implements the BaseFieldsCreate interface. */ export declare function instanceOfBaseFieldsCreate(value: object): value is BaseFieldsCreate; export declare function BaseFieldsCreateFromJSON(json: any): BaseFieldsCreate; export declare function BaseFieldsCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): BaseFieldsCreate; export declare function BaseFieldsCreateToJSON(value?: BaseFieldsCreate | null): any;