import React from 'react';
import type { SpacingProps } from '../../shared/types';
import type { SkeletonShow } from '../skeleton/Skeleton';
type RootOwnProps = {
    visualOrder?: 'label-content' | 'content-label';
    skeleton?: SkeletonShow;
};
export type RootProps = Omit<React.HTMLProps<HTMLElement>, keyof RootOwnProps | 'ref'> & RootOwnProps & SpacingProps;
declare function Root(props: RootProps): import("react/jsx-runtime").JSX.Element;
declare namespace Root {
    var _supportsSpacingProps: boolean;
}
export default Root;
