import type { Props as FlexHorizontalProps } from '../flex/Horizontal';
import type { SkeletonShow } from '../skeleton/Skeleton';
export type InlineProps = FlexHorizontalProps & {
    id?: string;
    skeleton?: SkeletonShow;
};
declare function Inline({ children, className, gap, align, skeleton, ...rest }: InlineProps): import("react/jsx-runtime").JSX.Element;
declare namespace Inline {
    var _supportsSpacingProps: boolean;
}
export default Inline;
