import React from 'react'; import { ExternalStyles } from '../../styles'; import { Omit } from '../../util'; export interface VFlowProps extends Omit, 'style'> { vSpacing?: number; style?: ExternalStyles; } /** * @deprecated Use `Flow` component with `direction='vertical'` instead. * * @example * // Before * ... * * // After * ... * * @deprecatedSince 1.0.1 */ export declare function VFlow(props: VFlowProps): JSX.Element; export declare namespace VFlow { var defaultProps: VFlowProps; }