/// declare type BorderValues = { borderTopLeftRadius?: string; borderTopRightRadius?: string; borderBottomLeftRadius?: string; borderBottomRightRadius?: string; }; declare type Props = { values: BorderValues; onChange: (newValue: { [edge: string]: string; }) => void; }; export declare const BorderRadiusInput: ({ values, onChange }: Props) => JSX.Element; export {};