UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

31 lines 908 B
import React, { MutableRefObject } from 'react'; import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { SomeRequired } from '../internal/types'; import { HeaderProps } from './interfaces'; interface InternalHeaderProps extends SomeRequired<HeaderProps, 'variant'>, InternalBaseComponentProps { __disableActionsWrapping?: boolean; __headingTagRef?: MutableRefObject<HTMLHeadingElement | null>; __headingTagTabIndex?: number; } export default function InternalHeader({ variant, headingTagOverride, children, actions, counter, description, info, __internalRootRef, __disableActionsWrapping, __headingTagRef, __headingTagTabIndex, ...restProps }: InternalHeaderProps): JSX.Element; export declare function Description({ children, variantOverride }: { children: React.ReactNode; variantOverride: string; }): JSX.Element | null; export {};