/** * PropertyPaneHeader component props. * * @beta */ export interface IPropertyPaneHeadingProps { /** * Display text for the Header. */ text: string; /** * Heading level of the webpart title header. */ headingLevel?: PropertyPaneHeadingLevel; } /** * @beta * Type for the heading levels, h1-h6 * */ export type PropertyPaneHeadingLevel = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; //# sourceMappingURL=IPropertyPaneHeading.d.ts.map