/// interface Props { value: string; id: string; onUpdate: (newValue: string) => void; label?: string; } export declare const borderStyles: { value: string; label: string; }[]; export declare const BorderStylePicker: ({ value, label, id, onUpdate }: Props) => JSX.Element; export {};