import { SquircleParams } from '../types'; /** * Generates an SVG path string for a squircle shape. * * @param {SquircleParams} params - Dimensions and styling parameters * for the squircle. If no `cornerSmoothing` is provided, a default * value of `0.6` is used to produce a visually pleasing balance * between rounded and rectangular corners. * * @returns {string} An SVG path data string that can be used in a `` element. * * @example * const path = getSquircle({ width: 100, height: 100, cornerRadius: 20 }); * // -> "M0,50 C0,22 ... Z" */ export declare function getSquircle(params: SquircleParams): string;