import { ResellerPanelPasswordUpdateStatusEnum } from './ResellerPanelPasswordUpdateStatusEnum';
/** Describe the status of the reseller panel, if it is activated and if there is a password update ongoing */
export interface ResellerPanelStatus {
    /** Whether the reseller panel is enabled or not */
    enabled: boolean;
    /** Password update task status */
    passwordUpdateStatus?: ResellerPanelPasswordUpdateStatusEnum;
}
//# sourceMappingURL=ResellerPanelStatus.d.ts.map