import * as React from 'react'; import { PageDirection } from '../propertyPane/PropertyPane'; /** * Property pane footer properties. * * @internal */ export interface IPropertyPaneFooterProps { isReactive: boolean; isSaveButtonEnabled: boolean; numberOfPages: number; currentPage: number; onSaveClick: () => void; onFlipPage: (direction: PageDirection) => void; } export default class PropertyPaneFooter extends React.Component { constructor(props: IPropertyPaneFooterProps); render(): React.ReactElement<{}> | false; private _renderCommandButtons; private _onBackClick; private _onNextClick; private _pageNavigationButtons; private _arrowKeyIcon; } //# sourceMappingURL=PropertyPaneFooter.d.ts.map