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