import React from 'react';
interface IRowProps {
    children: React.ReactNode;
}
export default function PHXRow({ children }: IRowProps): React.JSX.Element;
export {};
