import type { ViewStyle } from 'react-native'; import type { LabelPosition } from './types'; /** * The `flexDirection` value returned from `getFlexDirectionFromLabelPosition` * assumes a `Label` component follows the `Primary` component it labels inside * the `Container` that the `flexDirection` is applied to. * * Example Usage: * ```jsx * const flexDirection = getFlexDirectionFromLabelPosition(labelPosition); * * * * ``` */ export declare const getFlexDirectionFromLabelPosition: (position: LabelPosition) => ViewStyle['flexDirection'];