import { RmaStepNameEnum } from './RmaStepNameEnum';
import { RmaStepStatusEnum } from './RmaStepStatusEnum';
/** Informations related to the current RMA step status */
export interface RmaStep {
    /** A brief description of the step */
    description: string;
    /** The date when this step was done */
    doneDate?: string;
    /** Additional information about the step */
    infos?: string;
    /** RMA step names */
    name: RmaStepNameEnum;
    /** Status of the RMA step */
    status: RmaStepStatusEnum;
}
//# sourceMappingURL=RmaStep.d.ts.map