import React from "react";
export interface InlineListProps {
    children?: JSX.Element | JSX.Element[] | string | number;
}
declare const InlineList: React.FC<InlineListProps>;
export default InlineList;
