UNPKG

@enonic/react-components

Version:

Library of React components for handling Enonic XP data and page components

8 lines (7 loc) 383 B
import type { LiteralUnion } from '@enonic-types/core'; import type { ClassValue } from 'clsx'; export declare function Part({ as, children, className, ...extraProps }: Omit<React.HTMLAttributes<HTMLElement>, 'className'> & { as?: LiteralUnion<keyof JSX.IntrinsicElements>; children?: React.ReactNode; className?: ClassValue; }): import("react/jsx-runtime").JSX.Element;