import React from 'react';
import { SpacingScale } from '../types';
export interface HorizonProps {
    justify?: 'start' | 'end' | 'center' | 'around' | 'between' | 'evenly' | 'stretch';
    items?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
    gapX?: SpacingScale;
    gapY?: SpacingScale;
    children?: React.ReactNode;
    fullWidth?: boolean;
}
export declare function PHXHorizontalStack({ justify, items, gapX, gapY, children, fullWidth }: HorizonProps): React.JSX.Element;
