import React from 'react';
export declare type PageProgressProps = {
    barColor: string;
    barPercent: number;
    backBtnLabel: string;
    backBtnCallback?: Function;
    forwardBtnLabel: string;
    forwardBtnCallback?: Function;
    forwardBtnActive: boolean;
};
declare const PageProgress: React.FunctionComponent<PageProgressProps>;
export default PageProgress;
