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

10 lines 814 B
/// <reference types="react" /> import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { ExpandableSectionProps, InternalVariant } from './interfaces'; type InternalExpandableSectionProps = Omit<ExpandableSectionProps, 'variant'> & InternalBaseComponentProps & { variant?: InternalVariant; __injectAnalyticsComponentMetadata?: boolean; }; export default function InternalExpandableSection({ expanded: controlledExpanded, defaultExpanded, onChange, variant, children, header, headerText, headerCounter, headerDescription, headerInfo, headerActions, headingTagOverride, disableContentPaddings, headerAriaLabel, __internalRootRef, __injectAnalyticsComponentMetadata, ...props }: InternalExpandableSectionProps): JSX.Element; export {}; //# sourceMappingURL=internal.d.ts.map