/// import type { StyleValues, CSSVertices } from '../types'; export interface MultiCornerProps { type: string; values: { [k in CSSVertices]: StyleValues | null; }; handleUpdate: (vertex: CSSVertices, newValue: string) => void; suffix?: string; } export declare const MultiCornerControl: ({ type, values, handleUpdate, suffix }: MultiCornerProps) => JSX.Element;