import { type SkRect } from '@shopify/react-native-skia'; type GetRectPathParams = { x: number; y: number; width: number; height: number; } | { rect: SkRect; }; declare const getRectPath: (params: GetRectPathParams) => import("@shopify/react-native-skia").SkPath; type GetRoundedRectPathParams = GetRectPathParams & { r: number; }; declare const getRoundedRectPath: (params: GetRoundedRectPathParams) => import("@shopify/react-native-skia").SkPath; export { getRectPath, getRoundedRectPath }; //# sourceMappingURL=get-rect-path.d.ts.map