/** * My API * API documentation for my Laravel app * * 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. */ /** * * @export */ export declare const MenuItemType: { readonly Header: "header"; readonly Link: "link"; readonly CallToAction: "call_to_action"; readonly MegaMenu: "mega_menu"; }; export type MenuItemType = typeof MenuItemType[keyof typeof MenuItemType]; export declare function instanceOfMenuItemType(value: any): boolean; export declare function MenuItemTypeFromJSON(json: any): MenuItemType; export declare function MenuItemTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): MenuItemType; export declare function MenuItemTypeToJSON(value?: MenuItemType | null): any; export declare function MenuItemTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): MenuItemType;