/// <reference types="react" />
import { StyleProp } from 'react-native';
import { ViewStyle } from 'react-native';
interface ICurvedView {
    style?: StyleProp<ViewStyle>;
    width: number;
    height: number;
    bgColor: string;
    path: any;
    borderColor?: string;
    borderWidth?: number;
}
export type CurvedView = React.FC<ICurvedView>;
export {};
//# sourceMappingURL=model.d.ts.map