import * as React from 'react'; /** * Property pane title bar properties. * * @internal */ export interface IPropertyPaneTitleBarProps { title: string; onClose: () => void; isExpanded?: boolean; isCustomHeaderPresent?: boolean; showBackButton?: boolean; onBackClick?: () => void; } export declare const PropertyPaneTitleBar: React.FunctionComponent; //# sourceMappingURL=PropertyPaneTitleBar.d.ts.map