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