interface IProgressStep {
    completed: boolean;
    editable: boolean;
    key: string;
    label: string;
    content?: string;
}
export default IProgressStep;
