/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.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 SearchResultType: { readonly Asset: "Asset"; readonly Content: "Content"; readonly Dashboard: "Dashboard"; readonly Setting: "Setting"; readonly Rule: "Rule"; readonly Schema: "Schema"; }; export type SearchResultType = typeof SearchResultType[keyof typeof SearchResultType]; export declare function instanceOfSearchResultType(value: any): boolean; export declare function SearchResultTypeFromJSON(json: any): SearchResultType; export declare function SearchResultTypeFromJSONTyped(json: any, _ignoreDiscriminator: boolean): SearchResultType; export declare function SearchResultTypeToJSON(value?: SearchResultType | null): any;