import { StyleProp } from "react-native"; import { PropsWithChildren } from "react"; export declare function getSquirclePath(w: number, h: number, r1: number, r2: number): string; interface SquircleParams { style?: StyleProp; cornerRadius: number; cornerSmoothing: number; fillColor?: string; strokeColor?: string; strokeWidth?: number; } declare function SquircleView({ children, cornerRadius, cornerSmoothing, fillColor, strokeColor, strokeWidth, ...rest }: PropsWithChildren): JSX.Element; export { SquircleView }; export type { SquircleParams }; //# sourceMappingURL=SquircleView.d.ts.map