@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
16 lines (15 loc) • 620 B
TypeScript
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;