import { type StyleProp, type ViewStyle } from 'react-native'; import React, { type ReactNode } from 'react'; type Props = { flex?: number; children: ReactNode; styles?: StyleProp; onPress?: () => void; }; declare const Col: (props: Props) => React.JSX.Element; export default Col; //# sourceMappingURL=Col.d.ts.map