import { LayoutAlignItems, LayoutFlexDirection, LayoutGap, LayoutJustifyContent, LayoutPadding, ShortHand } from '@preply/ds-core'; import { StyleProp, ViewStyle } from 'react-native'; export interface LayoutFlexStyle { padding?: ShortHand; wrap?: boolean; direction?: LayoutFlexDirection; justifyContent?: LayoutJustifyContent; alignItems?: LayoutAlignItems; flex?: number; gap?: LayoutGap; } export declare function useLayoutFlexStyle({ padding, direction, wrap, alignItems, justifyContent, flex, gap, }: LayoutFlexStyle): StyleProp; //# sourceMappingURL=useLayoutFlexStyle.d.ts.map