import React from 'react'; import type { CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; interface ListInlineProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { align?: 'left' | 'center' | 'right'; children?: React.ReactNode; divider?: 'comma' | 'custom'; getRef?: GetRef; id?: string; } export declare function ListInline({ _modifierClass, align, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, divider, getRef, id, margin, ...rest }: ListInlineProps): React.JSX.Element; export {};