import * as React from 'react'; interface IProps { children: React.ReactNode | React.ReactNode[]; } interface IListProps { alignRight?: boolean; responsiveBreakpoint?: number; } export declare const HorizontalList: ({ alignRight, children, responsiveBreakpoint }: IProps & IListProps) => JSX.Element; export {};