import { ComponentChildren } from '../../shared/children'; import { GlobalProps } from '../../shared/global'; export interface SummaryProps extends GlobalProps { /** * The content to use as the label. * * Interactive content is disallowed. For example, you can use a `` element for extra formatting but * elements like buttons and fields are not allowed. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary * * @implementation Surfaces may apply styling to this element. An icon suggesting the state (open or closed) of the * details element is recommended. * * @implementation Surface may decide to warn when interactive elements are used. */ children?: ComponentChildren; }