/**
 *
 * @export
 * @interface FeatureCategory
 */
export interface FeatureCategory {
    /**
     * The localized name of the object.
     * @type {{ [key: string]: string; }}
     * @memberof FeatureCategory
     */
    readonly name?: {
        [key: string]: string;
    };
    /**
     * The localized description of the object.
     * @type {{ [key: string]: string; }}
     * @memberof FeatureCategory
     */
    readonly description?: {
        [key: string]: string;
    };
    /**
     * When listing feature categories, they can be sorted by this number.
     * @type {number}
     * @memberof FeatureCategory
     */
    readonly orderWeight?: number;
    /**
     * A unique identifier for the object.
     * @type {number}
     * @memberof FeatureCategory
     */
    readonly id?: number;
}
/**
 * Check if a given object implements the FeatureCategory interface.
 */
export declare function instanceOfFeatureCategory(value: object): value is FeatureCategory;
export declare function FeatureCategoryFromJSON(json: any): FeatureCategory;
export declare function FeatureCategoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureCategory;
export declare function FeatureCategoryToJSON(json: any): FeatureCategory;
export declare function FeatureCategoryToJSONTyped(value?: Omit<FeatureCategory, 'name' | 'description' | 'orderWeight' | 'id'> | null, ignoreDiscriminator?: boolean): any;
