export declare class Permission {
    /**
     * Unique id of the permission
     */
    id: string;
    /**
     * Name of the permission
     */
    name: string;
    /**
     * Description of the permission
     */
    description: string;
}
