/** * 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 PageType: { readonly Home: "home"; readonly Page: "page"; readonly Blog: "blog"; }; export type PageType = typeof PageType[keyof typeof PageType]; export declare function instanceOfPageType(value: any): boolean; export declare function PageTypeFromJSON(json: any): PageType; export declare function PageTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageType; export declare function PageTypeToJSON(value?: PageType | null): any; export declare function PageTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): PageType;