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