export declare class OrganizationEntity {
    constructor(entity: any);
    /** Entity key (used in the experience and preview model)
     * @pattern ^[A-Za-z0-9-_]{1,30}$
    */
    key: string;
    /** Entity name */
    name: string;
    /**
     * The data map of the values of the dataPoints defined at the organization.
     */
    data: object;
}
