import { BorderProps, GeometryProps } from '../types'; import { TSize } from '../helpers/size'; export interface BorderStyleProperties { borderColor: string; borderWidth: number; borderRadius: TSize; borderBottomLeftRadius: TSize; borderBottomRightRadius: TSize; borderTopLeftRadius: TSize; borderTopRightRadius: TSize; } export declare const transformBorderStyleProperties: (styles?: Partial) => BorderProps & GeometryProps;