import { Resource } from './resource.model';
/**
 * A suggestion made to appear as value to select.
 */
export declare class Suggestion extends Resource {
    /**
     * The value; it could be of any type.
     */
    value: any;
    /**
     * The name to show for the suggestion.
     */
    name: string;
    /**
     * A description with additional information on the suggestion.
     */
    description: string;
    /**
     * An optional first category.
     */
    category1: any;
    /**
     * An optional second category.
     */
    category2: any;
    load(x?: any): void;
    /**
     * Clear the suggestion.
     */
    clear(): void;
}
