/** @jsxImportSource nativewind */ /** * Source code copied and adapted from: * https://github.com/roninoss/rn-primitives * License: MIT (c) 2024 RoninOSS */ import * as React from "react"; import { View, type ViewStyle } from "react-native"; import type { SlottableViewProps, ViewRef } from "../types"; type RootProps = Omit & { ratio?: number; style?: ViewStyle; }; type RootRef = ViewRef; declare const Root: React.ForwardRefExoticComponent & { ratio?: number; style?: ViewStyle; } & React.RefAttributes>; export { Root }; export type { RootProps, RootRef }; //# sourceMappingURL=aspect-ratio.d.ts.map