import React from "react"; export declare enum StrokeType { default = 0, solid = 1, dashed = 2 } interface TextBoxStyleCardContentProps { setSelectedStroke: (selectedStroke: StrokeType) => void; selectedStroke: StrokeType; } export declare const TextBoxStyleCardContent: React.FC; export {};