import { DrawingID, DrawingState, ObjectID } from '@buerli.io/core'; /** * Wrapper around useDrawing which allows to avoid ReferenceErrors. * Use useDrawingCCId if you want to get an object id from store. It returns NOCCID if requested one is undefined or null. * * @param drawingId * @param selector * @returns requested by selector object id or NOCCID if requested is undefined or null */ export declare function useDrawingCCId(drawingId: DrawingID, selector: (state: DrawingState) => ObjectID | undefined): ObjectID;