import { BorderStyle } from "microboard-temp"; import React from "react"; type Props = { onPick: (style: BorderStyle) => void; stroke?: string; }; export declare function StrokeStylePicker({ stroke, onPick, }: Props): React.ReactElement; export {};