import React from 'react'; import type { View } from 'react-native'; import type { BoxProps } from './Box'; export type VStackProps = BoxProps; export declare const VStack: React.NamedExoticComponent< import('@coinbase/cds-common').SharedProps & import('../styles/styleProps').StyleProps & { children?: React.ReactNode; style?: import('react-native').Animated.WithAnimatedValue< import('react-native').StyleProp >; animated?: boolean; elevation?: import('@coinbase/cds-common').ElevationLevels; font?: import('@coinbase/cds-common').ThemeVars.FontFamily | 'inherit'; pin?: import('@coinbase/cds-common').PinningDirection; bordered?: boolean; borderedTop?: boolean; borderedBottom?: boolean; borderedStart?: boolean; borderedEnd?: boolean; borderedHorizontal?: boolean; borderedVertical?: boolean; dangerouslySetBackground?: string; } & Omit & { ref?: React.Ref; } >; //# sourceMappingURL=VStack.d.ts.map