import { Options } from 'roughjs/bin/core'; import { RoughSVG } from 'roughjs/bin/svg'; import { MaybeRefOrGetter } from 'vue'; export interface DrawBoxProps { filled?: MaybeRefOrGetter; round?: MaybeRefOrGetter; } export declare function useDrawBox(props?: DrawBoxProps): (rc: RoughSVG, svg: SVGSVGElement, overridden: Options) => void;