import { Circle, Rect } from '../geometry'; export declare class Renderable { batchable: boolean; /** * Custom hit area for the renderable. e.g. for transformer anchors which need a larger hit area. * @see https://pixijs.com/8.x/examples/events/custom-hitarea */ hitArea: Circle | Rect; constructor(props?: Partial); }