@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
24 lines • 741 B
TypeScript
import React from 'react';
import { InternalBaseComponentProps } from '../internal/hooks/use-base-component';
import { InternalVariant } from './interfaces';
interface ExpandableSectionContainerProps extends InternalBaseComponentProps {
className?: string;
header: React.ReactNode;
children?: React.ReactNode;
variant: InternalVariant;
expanded: boolean | undefined;
disableContentPaddings: boolean | undefined;
__injectAnalyticsComponentMetadata?: boolean;
}
export declare const ExpandableSectionContainer: ({
className,
children,
header,
variant,
expanded,
disableContentPaddings,
__internalRootRef,
__injectAnalyticsComponentMetadata,
...rest
}: ExpandableSectionContainerProps) => JSX.Element;
export {};