import React from 'react'; interface LineTypeSettingProps { value?: string; onChange: (lineType: 'solid' | 'dash') => void; } export default function LineTypeSetting(props: LineTypeSettingProps): React.JSX.Element; export {};