import { IGroupItemData } from "./IGroupItemData";
/**
* A structure containing parameters of clipart.
* @remarks For details, you can refer to the {@link https://customerscanvas.com/help/designers-manual/design-anatomy/groups.html|Group elements} topic.
* @example
* ```json
* {
*    "defaultItemsConfig": {
*        "clipart": {
*            "manipulationPermissions": {
*                "allowMoveHorizontal": false
*            },
*            "angle": 20
*        }
*    }
* }
* ```
* @public
*/
export interface IClipartItemData extends IGroupItemData {
}
