import React from 'react';
import type { SpacingProps } from '../../shared/types';
import type { SkeletonShow } from '../skeleton/Skeleton';
type ContentOwnProps = {
    element?: keyof JSX.IntrinsicElements;
    direction?: 'horizontal' | 'vertical';
    skeleton?: SkeletonShow;
};
export type ContentProps = Omit<React.HTMLProps<HTMLElement>, keyof ContentOwnProps | 'ref'> & ContentOwnProps & SpacingProps;
declare function Content(props: ContentProps): import("react/jsx-runtime").JSX.Element;
declare namespace Content {
    var _supportsSpacingProps: boolean;
    var _statRole: string;
}
export default Content;
