import React from 'react'; import { ExternalStyles } from '../../styles'; import { Omit } from '../../util'; import { AlignItems, JustifyContent } from '../Grid'; export interface HFlowProps extends Omit, 'style'> { hSpacing?: number; alignItems?: AlignItems; justifyContent?: JustifyContent; style?: ExternalStyles; } /** * @deprecated Use `Flow` component with `direction='horizontal'` instead. * * @example * // Before * ... * // After * ... * * @deprecatedSince 1.0.1 */ export declare function HFlow(props: HFlowProps): JSX.Element; export declare namespace HFlow { var defaultProps: HFlowProps; }