import * as React from "react"; import { type ViewProps, type FlexStyle } from "react-native"; type Props = { alignItems?: FlexStyle["alignItems"]; justifyContent?: FlexStyle["justifyContent"]; alignContent?: FlexStyle["alignContent"]; alignSelf?: FlexStyle["alignSelf"]; gap?: number; } & ViewProps; /** * Row * - A View Component whose default flexDiretion is row */ export declare const Row: React.FC; export {}; //# sourceMappingURL=Row.d.ts.map