/** * @file packages/expo-squircle/src/core/squircleMath.ts * @description Geometry helpers that build SVG path commands for squircle shapes. * * Exports * - buildSquirclePath * * @license MIT. Internal helper for expo-squircle. * @author Doğu Abaris */ import type { SquirclePathInput } from './types'; /** * Builds an SVG path definition representing a smooth squircle that fits inside * the provided width/height using per-corner radii and smoothing inputs. * * @param options SquirclePathInput describing the desired geometry. * @returns string SVG path string that can be consumed by react-native-svg. */ export declare function buildSquirclePath({ cornerRadius, topLeftCornerRadius, topRightCornerRadius, bottomRightCornerRadius, bottomLeftCornerRadius, cornerSmoothing, width, height, preserveSmoothing, }: SquirclePathInput): string; //# sourceMappingURL=squircleMath.d.ts.map