/** * PropertyPane webpart header props. * * @internal */ export interface IPropertyPaneWebPartTitle { /** * Module name of web part for which header is being modified. */ moduleName: string; /** * Whether or not the Title is enabled for the webpart */ isTitleEnabled?: boolean; /** * Heading level of the web part title. */ headingLevel?: number; /** * Title property name. */ isTitleEnabledPropertyName?: string; /** * Heading size property name */ headingLevelPropertyName?: string; /** * Whether to hide the heading level dropdown */ hideHeadingLevelDropdown?: boolean; } //# sourceMappingURL=IPropertyPaneWebPartTitle.d.ts.map