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