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